resend webhook
GET
/webhook/resend/APIKEYRetrieve Webhook Resend Response
This API endpoint is used to resend all pending messages to the webhook.
Response
The response for this request is a JSON object with the following schema:
{
"pending": integer,
"apiKey": string,
"message": string,
"url": string
}
pending
: (integer) The count of pending messages.apiKey
: (string) The API key of your service.message
: (string) A message, A description of how many messages were resent.url
: (string) The URL associated with the webhook.
Request
None
Request samples
Responses
resend webhook(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
pending
integer
required
apiKey
string
required
message
string
required
url
string
required
Exampleresend webhook
{
"pending": 4,
"apiKey": "APIKEY",
"message": "Resend 4 messages to https://webhook.site/6a61d7c8-43bf-4e5b-b554-9aa727f9a00e",
"url": "https://webhook.site/6a61d7c8-43bf-4e5b-b554-9aa727f9a00e"
}
Last modified: 5 months ago