Status per message
- Home
- Status per message
Status by ID
This request allows you to retrieve the status of several SMS messages from an ID.
Please note: reports are received on average a few seconds after the SMS is sent; however, this delay can extend to a maximum of 48 hours depending on the operators and the load of our platform.
URL
GET https://api.smspartner.fr/v1/bulk-status
Parameters
Each API request supports the following parameters:
apiKey | API key of your account. You get it in your SMS Partner account. |
---|---|
messageId | Message ID. It is in the answer when sending an SMS. |
Request
Request example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<?php // Prepare data for GET request $data = 'apiKey=YOUR_API_KEY&messageId=300'; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL,'https://api.smspartner.fr/v1/bulk-status?'.$data); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_TIMEOUT, 10); $result = curl_exec($curl); curl_close($curl); // Process your response here echo $result; ?> |
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
Imports System.IO Imports System.Net Module Module1 Sub Main() Dim base_url As String = "http://api.smspartner.fr/v1/" Dim apiKey As String = "VOTRE_APIKEY" Dim messageId As Integer = XXX #check credits Dim url As String url = base_url & "bulk-status" & "?apiKey=" & apiKey & "&messageId=" & messageId Dim credits As String credits = apiRequest("GET", url, Nothing) End Sub Function apiRequest(method As String, url As String, parameters As String) As String Dim request As HttpWebRequest request = WebRequest.Create(url) request.Method = method request.Timeout = 10000 # timeout in ms request.ContentType = "application/json; charset=utf-8" request.ContentLength = 0 #set POST data If Not String.IsNullOrEmpty(parameters) Then request.ContentLength = parameters.Length Using reqStream As StreamWriter = New StreamWriter(request.GetRequestStream()) reqStream.Write(parameters) End Using End If #get response Dim returnValue As String = Nothing Using response As HttpWebResponse = request.GetResponse() If response.StatusCode = HttpStatusCode.OK Then Using resStream = response.GetResponseStream() If resStream IsNot Nothing Then Using reader As New StreamReader(resStream) returnValue = reader.ReadToEnd() End Using End If End Using End If End Using apiRequest = returnValue End Function End Module |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# std import logging import json from collections import OrderedDict # 3p import requests API_KEY = "MY API KEY" URL = "https://api.smspartner.fr/v1" class SMSPartner(): def get_delivery(self,message_id): url = URL + "/bulk-status?apiKey=" + API_KEY + "&messageId=" + message_id r = requests.get(url) r_json = r.json() if r_json.get("success") == True: print(r_json) status = True else: print(r_json) status = False return status |
1 |
curl -H "Content-Type: application/json" -X GET https://api.smspartner.fr/v1/bulk-status?apiKey=xxx&messageId=300 |
Answers
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
{ "success": true, "code": 200, "message_id": "111", "StatutResponse_List": [ { "phoneNumber": "+336XXXXXXX1", "status": "Delivered", "stopSMS": false, "date": "1517989111" }, { "phoneNumber": "+336XXXXXXX2", "status": "Delivered", "stopSMS": false, "date": "1517989101" } ... } |
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 30 31 32 33 34 35 36 |
<?xml version='1.0' encoding='UTF-8'?> <result> <entry>true</entry> <entry>200</entry> <entry> <![CDATA[11]]> </entry> <entry> <entry> <entry> <![CDATA[+336XXXXXXX1]]> </entry> <entry> <![CDATA[Delivered]]> </entry> <entry>false</entry> <entry> <![CDATA[1517989111]]> </entry> </entry> <entry> <entry> <![CDATA[+336XXXXXXX2]]> </entry> <entry> <![CDATA[Delivered]]> </entry> <entry>false</entry> <entry> <![CDATA[1517989086]]> </entry> </entry> ... </entry> </result> |
Errors
Example of an error message:
1 2 3 4 5 |
{ "success": false, "code": 10, "message": "Clé API incorrecte" } |
1 2 3 4 5 6 |
<?xml version='1.0' encoding='UTF-8'?> <result> <entry>false</entry> <entry>10</entry> <entry>Clé API incorrecte</entry> </result> |
Control code
Answers | ||
---|---|---|
1 | The API Key is required | |
3 | The message ID is required | |
4 | Message not found | |
10 | Invalid API key | |
200 | Everything went well! |