Skip to main content
POST
/
v1
/
notifications
/
webhooks
/
{id}
/
send
Send (replay) an event to the endpoint
curl --request POST \
  --url https://api.paystack.com/v1/notifications/webhooks/{id}/send \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_idempotency_key": "<string>"
}
'
{
  "status": true,
  "message": "Event queued for delivery",
  "code": "ok",
  "data": {
    "status": "accepted",
    "event_idempotency_key": "evt-1",
    "topic": "onramp.success"
  },
  "meta": {
    "request_id": "req_01HXYZ4K5ABCDEFGHJKLMNPQRS",
    "timestamp": "2026-05-14T15:43:55.732Z",
    "version": "1"
  }
}

Authorizations

Authorization
string
header
required

API key issued during merchant onboarding.

Path Parameters

id
string
required
Pattern: [^\/#\?]+?

Body

application/json

SendWebhookEventDto

event_idempotency_key
string
required
Required string length: 1 - 255

Response

Event queued for delivery

status
enum<boolean>
required
Available options:
true
Example:

true

message
string
required

Human-readable summary

Example:

"Event queued for delivery"

code
enum<string>
required
Available options:
ok
Example:

"ok"

data
object
required
meta
object
required