Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
    • Resend webhook notificationsPOST
  • Archive
logoPowered by Apifox
  1. Webhook

Resend webhook notifications

POST/open-api/entity/webhook/resend

This method allows you to resend all failed webhook notifications to Webhook Endpoints by specifying the eventType.

API Key permission group : Enable Wallet Management

Request

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
enum<string> 
required

Event type

Allowed values:
1234
resendFromDateTime
number 
required

Timestamp in millisecond

timestamp
number 
required

Current timestamp in millisecond

Example
{
  "webhookId": "1721442311151521794",
  "eventType": "1",
  "resendFromDateTime": 1699256508000,
  "timestamp": 1699256508000
}

Request samples

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 Code: 200
Content Type : 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: 9 months ago