Exemple by type

WebhookType.USER

Is called when the status of a user is modified at the KYC level. If the user is accepted, refused, pending etc... as soon as his status changes we send you the information

Make a POST call api to URL

{
    user : User,
    state : KycState
}

WebhookType.TRANSACTION

Is called when a transaction changes status. If it goes to "cancel" "accepted".

Make a POST call api to URL

{
    transaction : Transaction,
}

Last updated