API - Send Message

POST /api/messages

Headers

Name
Value

Content-Type

application/json

X-Api-Key

<ApiKey>

Body

{
  "type": "text",
  "content": {
    "text": "Hi, Selamat datang di kirimna"
  },
  "contact": {
    "name": "Jhon",
    "phone": "6285708546533"
  },
  "device_id": "9b97b4d2-c484-444d-818d-d386fa0e57b9" 
}

Check the full available request body here.

Response

{
    "meta": {
        "status": 200,
        "message": "Successfully sent message"
    },
    "data": {
        "id": "9bf83e84-bfdc-4f33-b31f-9209ee6162e9",
        "user_id": "9b1ab681-d810-4f0e-a987-84930b5716cb",
        "type": "text",
        "name": "Jhon",
        "to": "6282243254986",
        "device_id": "9b97b4d2-c484-444d-818d-d386fa0e57b9",
        "content": {
            "text": "Hi, Selamat datang di kirimna"
        },        "updated_at": "2024-05-05T10:30:30.000000Z",
        "created_at": "2024-05-05T10:30:30.000000Z"
    }
} 

Last updated