Questions tagged [clickatell]

Questions about the Clickatell API. Support questions should be directed to Clickatell website contact page.

Questions about the Clickatell API. Support questions should be directed to https://www.clickatell.com/contact/contact-us/.

94 questions
0
votes
0 answers

Cannot install laravel-notification-channels/clickatell

When I try to install the notification channel laravel-notification-channels/clickatell it gives me the error below. How can I clear it? - Root composer.json requires laravel-notification-channels/clickatell ^0.1.4 -> satisfiable by…
Shuast
  • 15
  • 6
0
votes
1 answer

Getting error code 21 on clickatell api request

{"error":{"code":21,"description":"Payload data is malformed."}} I am sending the request as described in the example in clickatell but when i am sending request to whatsapp messages as channel then i am getting error code 21. { "messages": [ …
Hassaan
  • 319
  • 2
  • 26
0
votes
1 answer

Clickatell - WhatsApp Template - One API

I try to send a WhatsApp template message using the Clickatell One API end point. Here is my payload. I'm send this against the endpoint with POST. { "messages":[ { "to":"***********", "channel": "whatsapp", …
0
votes
0 answers

Clickatell Triggering During Market Days

I am developing an app and I noticed it sometimes sends texts before I click Html link should I be doing this with C# not Html? Also, my project html page is going to wait each day then check metals API(which checks the market mainly metals). I'd…
0
votes
2 answers

Japanese text not visible in mobile

I am sending text message having Japanese characters. Here is my message In japanese このOTPを使用してQuikドライブにログインします。 このOTPを誰とも共有しないでください In English use this OTP to login to Quik Drive. Please don't share this OTP to anyone Here what I am getting Here…
Profer
  • 553
  • 8
  • 40
  • 81
0
votes
2 answers

Is it possible to add a FROM to SMS with new clickatell API?

The new platform API at Clickatell seems to not allow you to add "from" to the JSON payload, complaining that it not a 2 way integration, but the is no possibility to add a text moniker to the short codes so that instead of the number "COMPANY"…
john renfrew
  • 393
  • 1
  • 9
  • 30
0
votes
1 answer

Clickatell sending blank message to iphone from sandbox account

I'm using clickatell sandbox account, when i try to send sms to iphone using send sms api receiving only blank message. PS: In Andriod it's working fine
RiK
  • 1
0
votes
1 answer

Clickatell parseReplyCallback returning null?

I am trying to get a reply text message from Clickatell using their Rest API, when I call the parseReplyCallback function when their system posts to my page - it seems to be null or I am not sure how to get the variables it is returning. What I…
0
votes
1 answer

Clickatell getting routing error with Rest API

When I try to send SMS to US number I'm getting from API accept but message not sent. In clickatell I see "routing error" Same message to number outside of US is working fine. I have no 2-way number configured - is it a must? Any other ideas?
Doron
  • 3
  • 1
0
votes
1 answer

Clickatell Get Balance

I want to withdraw the amount in my account, but the account is not found error. I'm successfully sending sms with the same api.
Anna
  • 1
  • 3
0
votes
0 answers

I'm trying to track delivery status of a message using php( REST api) from Clickatell

In my controller i have public function msgStatus(){ $this->load->library('clickatell_rest'); $this->clickatell_rest->getMsgStatus(); } clickatell rest library class public function getMsgStatus(){ $msgId = "message ID here"; …
sebake
  • 9
  • 4
0
votes
1 answer

using clickatell on developer central

I have been using the integration from sandbox environment to send free test sms'es and everything is working fine.This is the code that I am using Dictionary Params = new Dictionary(); Params.Add("content",…
0
votes
1 answer

Routing error with REST API in Clickatell

I am trying to send a SMS using REST API in clickatell. I tested it using POSTMAN. I sent the Headers as POST /rest/message HTTP/1.1 Host: api.clickatell.com Accept: application/json Content-Type: application/json X-Version: 1 Authorization: Bearer…
0
votes
0 answers

How to send Arabic SMS using Clickatell REST API in PHP?

Here is my code $to="[\"\"]"; $text = "غثس هفس خن"; $arr = unpack('H*hex', iconv('UTF-8', 'UCS-2BE', $text)); $message = strtoupper($arr['hex']); $authToken="3fUXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; $ch = curl_init(); curl_setopt($ch,…
0
votes
1 answer

Sending sms using php {"error":"HTTP 405 Method Not Allowed"}

I trying to send sms message to users using php language . I using curl to send this message but I have this error {"error":"HTTP 405 Method Not Allowed"} I used Clickatell as sms api . this is my code echo $url=…
Abobaker EngIt
  • 37
  • 1
  • 10