Skip to main content

WhatsApp Send API

RESTFUL ENDPOINT:

METHOD POST
URL


RESTFUL HEADER:

token <your_token_generated_by_authentication> see Auth


REQUEST BODY:

{
  message : "<your_message>[required]",
  phone : "<intl_formatted_phone_number>[required]",
  image_url : "<image_url_if_any>[optional]"
}

EXAMPLE REQUEST BODY:

{
  message : "Hello World, This is me from WA Gabung.in",
  phone : "62812391283129",
  image_url : "https://via.placeholder.com/150"
}

RESPONSE BODY:

HTTP STATUS CODE 201
{
  success: true,
  result: "<any_whatsapp_result_if_any>"
}