Resend webhook notifications
POST
/open-api/entity/webhook/resendThis method allows you to resend all failed webhook notifications to Webhook Endpoints by specifying the eventType.
API Key permission group : Enable Wallet Management
请求参数
Header Params
open-apikey
string
required
API key
signature
string
required
Signature of the request
Body Params application/json
webhookId
string
required
Webhook id
eventType
#/definitions/351883required
Event type
resendFromDateTime
number
required
Timestamp in millisecond
timestamp
number
required
Current timestamp in millisecond
Example
{
"webhookId": "1721442311151521794",
"eventType": "1",
"resendFromDateTime": 1699256508000,
"timestamp": 1699256508000
}
示例代码
Responses
The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP 状态码: 200
内容格式: JSONapplication/json
Data Schema
data
boolean | null
optional
response data, maybe null
code
string
required
'000000' indicates success, while any others indicate failure.
message
string
required
When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.
Example
{
"data": true,
"code": "000000",
"message": "Success"
}
Last modified: 5 个月前