Skip to content

Shipment

Notification WhatsApp user order shipment

HTTP Request

POST /v1/whatsapp/message/send/SHIPMENT_NOTIFICATION

Shipment 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",
  "shippingAddress": "340 E Middlefield Blvd, MTV, CA, 94043",
  "productName": "SmartPhone",
  "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.
shippingAddress String Receiver's address..
productName String Product name.
contactInfo String Contact info.
idempotentKey String Idempotent Id.
Back to top