Skip to main content

Get Trusted IPs

API Overview

  • Function: Get the list of push server IPs. These IPs are used for Webhook requests, and receivers can use them to verify if requests are trustworthy
  • Request Method: GET
  • Request URL: /api/webhooks/ip?appid={appid}&access_token={access_token}

Response Parameters

Parameter NameTypeDescription
listarray[string]IP list

Response Example

{
"code": "OK",
"error": {
"type": ""
},
"data": {
"list": [ // The actual response may differ, do not copy this example list
"58.60.9.114",
"58.60.9.115",
"58.60.9.116",
"58.60.9.117",
"58.60.9.118",
"58.60.9.119",
"58.60.9.12",
"58.60.9.120"
]
},
"request_id": "e352b8a5-d6b8-42c5-b1f7-d57ce44a04ee"
}