List all event types
List all webhook event types
GET
https://sandbox-api.stilt.com/v1/webhooks/events
[
{
"name": "payment.failed",
"description": "An event triggered when a payment fails"
},
{
"name": "payment.succeeded",
"description": "An event triggered when a payment succeeds"
},
{
"name": "payment.failed_after_success",
"description": "An event triggered when payment fails after success"
},
{
"name": "loan.new_statement",
"description": "An event triggered when new statement is generated"
},
{
"name": "funds_transfer.succeeded",
"description": "An event triggered when funds transfer between client and stilt is successful"
},
{
"name": "funds_transfer.transaction_failed",
"description": "An event triggered when funds transfer between client and stilt fails"
},
{
"name": "funds_transfer.failed_after_success",
"description": "An event triggered when funds transfer between client and stilt fails after success"
},
{
"name": "funds_transfer.hold",
"description": "An event triggered when funds transfer between client and stilt on hold"
},
{
"name": "funds_transfer.processing",
"description": "An event triggered when funds transfer between client and stilt is under processing"
},
{
"name": "funds_transfer.pending",
"description": "An event triggered when funds transfer between client and stilt is pending"
},
{
"name": "funds_transfer.scheduled",
"description": "An event triggered when funds transfer between client and stilt is scheduled"
},
{
"name": "funds_transfer.initiated",
"description": "An event triggered when funds transfer between client and stilt is initiated"
}
]
{
// Response
}
Be sure to omit `Content-Type': 'application/json'
from the header of this request to avoid a 500
error
Last updated