Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Entities
Authorization Request Event
Enterprise Feature: Authorization webhooks are an enterprise-only feature. Please reach out to sales@slash.com to get set up with this functionality.
This schema shows the shape of the event that is sent to the authorization webhook.
Card authorization request webhook event payload
Copy
Ask AI
{
"event": {
"type": "authorization.request",
"id": "<string>"
},
"data": {
"transaction": {
"id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
},
"card": {
"id": "<string>",
"name": "<string>"
},
"account": {
"id": "<string>",
"name": "<string>"
},
"virtualAccount": {
"id": "<string>",
"name": "<string>"
},
"merchant": {
"name": "<string>",
"categoryCode": "<string>"
},
"amount": {
"amountCents": 123
},
"currencyConversion": {
"conversionRate": 123,
"originalAmountCents": 123,
"originalCurrencyCode": "<string>"
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.