Payment Recovery
Recovery of unpaid payments.¶
HTTP Request¶
POST /v1/whatsapp/message/send/PAYMENT_RECOVERY
Payment Recovery Request¶
Request Headers
{
"Content-Type": "application/json",
"Authorization": "Bearer {{access_token}}",
"x-api-key": "{{api_key}}"
}
Request Body
{
"orderId": "123456",
"phone": "11987654321",
"countryCallingCode": "+55",
"customerName": "Austin Bu",
"headerImage": "https://static.wikia.nocookie.net/c__/images/6/6b/Quote.jpg/revision/latest?cb=20110107214657&path-prefix=cavestory",
"currency": "BRL",
"amountInCents": "10000",
"createTime": "2023-10-16 10:30:30",
"notificationUrl": "https://www.liquido.com"
}
Request Headers Parameters¶
| Key | Value |
|---|---|
| Authorization | "Bearer" + " " + {{access_token}} |
| x-api-key | {{api_key}} |
Request Body Parameters¶
| Parameter | Required | Type | Description |
|---|---|---|---|
| orderId | String | Order Id. | |
| phone | String | Phone number without country code. "11987654321" | |
| countryCallingCode | String | Country calling code. such as "+1" in USA. | |
| customerName | String | Customer full name. | |
| headerImage | String | Product image. | |
| currency | String | Currency, such as "BRL". | |
| amountInCents | Long | Amount, in cents. | |
| createTime | String | Payment creation time. | |
| notificationUrl | String | The url to notify merchant payment result. |