Skip to content

Payment Settled

Notification WhatsApp user order has been settled

HTTP Request

POST /v1/whatsapp/message/send/PAYMENT_SETTLED_NOTIFICATION

Payment Settled 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",
  "orderId": "13490123",
  "currency": "BRL",
  "amountInCents": "100",
  "contactInfo": "support@liquido.com",
  "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.
orderId String Order Id.
currency String Currency, such as "BRL".
amountInCents String Amount, in cents.
contactInfo String Contact info.
idempotentKey String Idempotent Id.
Back to top