You can easily test sending a single SMS using Postman by following the steps below:

Step 1: Set the Request Type and Authentication

  • Choose the **POST** method.
  • In the Authorization tab, select Bearer Token and paste your valid access token.

Step 2: Set the Request Headers

In the Headers tab, include the following:

KeyValue
Acceptapplication/json
Content-Typeapplication/json

Step 3: Configure the Request Body (Raw JSON)

Switch to the Body tab → choose raw → select JSON format, and enter your message payload:

json
CopyEdit
{ "senderName": "CEQUENS", "messageText": "Hello from Postman!", "messageType": "text", "recipients": ["201234567890"] }

✅ Ensure all required fields are filled correctly. The recipients field must be in international format (E.164).