Get IP Whitelist
You can use this endpoint below to check your IP that whitelisted in Seller API.
GET /v1/fs/:fs_id/whitelist
With the following parameters:
Parameter | Type | Required | Location | Description |
---|---|---|---|---|
fs_id | integer | required | path | Fulfillment service unique identifier. |
Example request
curl -X GET \
'https://fs.tokopedia.net/v1/fs/13398/whitelist' \
-H 'Authorization: Bearer JhgtdgUAQ5OJIrQMJjCiHA'
Example Response
{
"header": {
"process_time": 0.017376506,
"messages": "Your request has been processed successfully"
},
"data": {
"fs_id": 13138,
"ip_whitelisted": [
"202.80.212.75",
"5.37.157.153",
"156.113.224.183",
"203.46.239.137"
]
}
}