Tin Viber

Cho phép bạn gửi tin nhắn đến số điện thoại đang sử dụng Viber.

HTTP request

POST https://rest.esms.vn/MainService.svc/json/Send_Multiple_Sms_OTT/

  • Content Type: application/json

  • Response Type: application/json

curl --location 'https://rest.esms.vn/MainService.svc/json/Send_Multiple_Sms_OTT/' \
--header 'Content-Type: application/json' \
--data '{
    "ApiKey": "{{ApiKey}}",
    "SecretKey": "{{SecretKey}}",
    "Brandname": "{{Brandname}}",
    "SmsType": "23",
    "Content": "{{Content}}",
    "OttImgUrl": "{{OttImgUrl}}",
    "OttLabel": "{{OttLabel}}",
    "OttUrl": "{{OttUrl}}",
    "Phones": [
        "{{Phone1}}","{{Phone2}}","{{Phone3}}"
    ],
    "IsSandBox": "{{IsSandBox}}",
    "CallbackUrl": "{{CallbackUrl}}"
}'
  • Cấu trúc body của request:

  • Lưu ý: Tin nhắn Viber có bốn kiểu nội dung để lựa chọn như sau: - Kiểu Văn bản - Ảnh- Nút => Khi request truyền các tham số: Content, OttImgUrl, OttUrl, OTTLabel. - Kiểu Văn bản - Nút => Khi request truyền các tham số: Content, OttUrl, OTTLabel. - Kiểu Ảnh => Khi request truyền các tham số: OttImgUrl. - Kiểu Văn bản => Khi request truyền các tham số: Content.


  • Response:

{
    "CodeResult": "100",
    "CountRegenerate": 0,
    "SMSID": "d8e0f1f0702544b2acb456ca9ccfd111250"
}

Request hợp lệ.

  • Cấu trúc body của response:

  • Thông tin chi tiết mã lỗi xem ở bảng: Mã lỗi .

  • Lấy code mẫu các ngôn ngữ trên Postman: Link code mẫu.

Last updated