Webhooks
Webhooks are HTTP callbacks that allow you to receive notifications when a Payload (Sign Request) has been resolved (rejected or signed).
A sample webhook looks like this:
{
"meta": {
"url": "<your-webhook-endpoint>",
"application_uuidv4": "<some-uuid>",
"payload_uuidv4": "<some-uuid>",
"opened_by_deeplink": true
},
"custom_meta": {
"identifier": "some_identifier_1337",
"blob": {},
"instruction": "Hey ❤️ ..."
},
"payloadResponse": {
"payload_uuidv4": "<some-uuid>",
"reference_call_uuidv4": "<some-uuid>",
"signed": true,
"user_token": true,
"return_url": {
"app": "<your-url>",
"web": "<your-url>"
},
"txid": "<some-tx-hash>"
},
"userToken": {
"user_token": "<some-token>",
"token_issued": 1635000000,
"token_expiration": 1637500000
}
}Safety
Last updated
Was this helpful?