Skip to content

Payment Reminder

Notification WhatsApp user pay order

HTTP Request

POST /v1/whatsapp/message/send/PAYMENT_REMINDER

Payment Reminder Request

Request Headers
{
  "Content-Type": "application/json",
  "Authorization": "Bearer {{access_token}}",
  "x-api-key": "{{api_key}}"
}
Request Body
{
  "phone": "11987654321",
  "countryCallingCode": "+55",
  "customerName": "Austin Bu",
  "redirectLink": "https://www.fedex.com/fedextrack/?trknbr=1",
  "headerImage": "https://static.wikia.nocookie.net/c__/images/6/6b/Quote.jpg/revision/latest?cb=20110107214657&path-prefix=cavestory",
  "currency": "BRL",
  "amountInCents": "100",
  "vendor": "LIQUIDO",
  "createTime": "2022-04-28 10:00:00",
  "idempotentKey": "CIxywFV5mRRY"
}
Content-Type: application/json
{
  "resultCode": 200,
  "msgId": "gBGGFRBQmGUvAglCIxywFV5mRRY"
}
Content-Type: application/json
{
  "resultCode": "601",
  "errorMessage": "This phone number does not have an associated whatsapp account."
}
Content-Type: application/json
{
  "resultCode": "500",
  "errorMessage": "Server internal error."
}
Request Headers Parameters
Key Value
Authorization "bearer" + " " + {{access_token}}
x-api-key {{api_key}}
Request Body Parameters
Parameter Required Type Description
phone String Phone number without country code. "11987654321"
countryCallingCode String Country calling code. such as "+1" in USA.
customerName String Customer full name.
redirectLink String Redirect URL.
headerImage String Product image.
currency String Currency, such as "BRL".
amountInCents Long Amount, in cents.
createTime String Payment creation time.
vendor String If the payment is done through Liquido, enter "LIQUIDO". Otherwise, enter "OTHER". This is used for conversion tracking.
idempotentKey String Idempotent Id.
Back to top