Send File

POST /send/file
multipart/form-data

Body

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
  • 400 application/json

    Bad Request

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal Server Error

    Hide response attributes Show response attributes object
POST /send/file
curl \
 -X POST http://localhost:3000/send/file \
 -H "Content-Type: multipart/form-data" \
 -F "phone=6289685028129@s.whatsapp.net" \
 -F "caption=selamat malam" \
 -F "file=@file"
Response examples (200)
{
  "code": "SUCCESS",
  "message": "Success",
  "results": {
    "message_id": "3EB0B430B6F8F1D0E053AC120E0A9E5C",
    "status": "<feature> success ...."
  }
}
Response examples (400)
{
  "code": 400,
  "message": "field cannot be blank",
  "results": {}
}
Response examples (500)
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "you are not loggin",
  "results": {}
}