Rotation proxy ip whitelist Run in Apifox
ip whitelist
There is a default limit on the number of ips that can be created, which can be obtained from the 'get user info' API. The 'whitelist_limit' field in the returned userinfo indicates the limit on the number of ips.
Request
Default: Bearer {{AUTH_TOKEN}}
Body Params application/json
{
"ip" : "127.0.0.1" ,
"tag" : "office ip"
}
Request samples curl --location --request POST 'https://api.ipcola.com/api/ip_whitelist/add' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"ip": "127.0.0.1",
"tag": "office ip"
}'
Responses application/json Generate Code
success or other error msg
1 for success, negative for error
{
"meta_message" : "string" ,
"meta_status" : 0 ,
"record" : {
"created_unixtime" : 0 ,
"id" : 0 ,
"ip" : "string" ,
"tag" : "string" ,
"user_id" : 0
}
}
Modified at 2023-06-21 07:23:46