POST
Receive an issuer platform event

Authorizations

x-api-key
string
header
required

Issuer API key identifying the caller. The key must be active. It must belong to the issuer named in data.issuer._id, or be unclaimed — the first correctly signed call binds an unclaimed key to that issuer permanently.

x-nonce
string
header
required

Unix time in milliseconds when the request was signed, as a decimal string. Rejected if it is more than five minutes from server time in either direction, and rejected if this key has already used it — every request needs a fresh value, including retries.

x-signature
string
header
required

Lowercase hex HMAC-SHA256, keyed with the API secret, over the string <x-nonce>.<raw request body> — the nonce, a literal dot, then the exact bytes sent as the body. Compared in constant time.

Body

application/json
event_type
string
required
Allowed value: "SYSTEM.PING"
data
any
timestamp
string

Response

Event accepted and applied

Non-standard body: the webhook acknowledges with only success.

success
boolean
required
Example:

true