Response management
- Home
- Response management
Answer on a long number
SMS Partner offers you the possibility to rent a long number (example: 06 XX XX XX XX) To find out more about creating a dedicated number, contact us.
Note: To receive the answers: set your URL for receiving the answers in your SMS API tab.
Example of a response on a simple SMS (160 characters maximum)
1 2 3 4 5 6 7 8 9 10 |
Array ( 'msisdn' => '33xxxxxxxxx', //numéro de la personne qui envoi le SMS 'to' => '33xxxxxxxxx', 'messageId' => '02000000XXXXXXXXX', 'text' => 'Test', 'type' => 'text', 'keyword' => 'Test', 'message-timestamp' => '2016-03-10 09:51:46' ) |
Example of a response on a long SMS (more than 160 characters)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
Array ( 'msisdn' => '33xxxxxxxxx', //numéro de la personne qui envoi le SMS 'to' => '33xxxxxxxxx', 'messageId' => '02000000YYYYYYYY', 'concat' => 'true', 'concat-ref' => '171', 'concat-total' => '2', 'concat-part' => '1', 'text' => ' Message long....', 'type' => 'text', 'keyword' => 'MESSAGELONG', 'message-timestamp' => '2016-03-09 16:00:30' ) Array ( 'msisdn' => '33xxxxxxxxx', //numéro de la personne qui envoi le SMS 'to' => '33xxxxxxxxx', 'messageId' => '02000000XXXXXXXX', 'concat' => 'true', 'concat-ref' => '171', 'concat-total' => '2', 'concat-part' => '2', 'text' => '....très long', 'type' => 'text', 'keyword' => 'TRESLONG', 'message-timestamp' => '2016-03-09 16:00:31' ) |
Answer on a short number (Premium SMS)
After sending a campaign from our short number, SMS Partner allows you to receive replies.
For more information, contact us.
Note: To receive the answers: set your URL for receiving the answers in your SMS API tab.
Example of an answer from our short number
1 2 3 4 5 6 |
Array ( 'type' => 'response', 'phone_number' => '+336XXXXXXX1', 'text' => 'Ma réponse', 'message_id' => '123' ) |