Notification
When any change in order’s status occurs, we will make a POST request to notify them of the change.
{
"status": "FINISHED",
"checksum": "ad87f88bc9d41f28de77773f82ec0bf607073e434b",
"order": "1e7ce9c5-75b1-40c2-949a-bb221aafe70d",
"merchant_reference": "your-merchant-id"
}
status: The actual order's status.
checksum: Hashed request information to validate the notification's veracity.
order: Our internal reference to the order.
merchant_reference: Your reference informed in order creation.
Possible status
Status | Description | Final status (Irreversible) |
---|---|---|
PENDING | When the order is registered, it has the status PENDING, but the webhook will not be called. | False |
CANCELED | The order will be canceled when the deposit is refused (compliance or the customer didn't pay using the right flow) or expires. | True |
FINISHED | When the order is successfully paid, the webhook is called. | True |
EXPIRED | The order will be expired when the deposit deadline expires. | True |