Search » Message

Search a previously sent message for a given message id.


Base URL


All requests to TheTexting must be submitted to the base URL. TheTexting provides you with an option of a response as a JSON object, or an XML string - you get to choose which response by selecting the appropriate base URL for your request.


JSON end point

https://www.thetexting.com/rest/sms/json

XML end point

https://www.thetexting.com/rest/sms/xml

HTTP Methods

This API call uses GET method.


Parameters

All requests require your API credentials (api_key & api_secret), which you can find under "API Settings" in TheTexting Dashboard.

Parameter Description
api_key Required. Your API Key. Ex: api_key=2f0ihf5656lfu03jl
api_secret Required. Your API Secret. Ex: api_secret=cluol3434qwfc0lg
message_id Required. Your message id received at submission time.

Sample URL

https://www.thetexting.com/rest/sms/json/search/message?api_key=your_api_Key&api_secret=your_api_secret&message_id=1233423422

JSON Response (Success)

{

    "Response": [

        {

            "message_id": "8                                                 ",

            "From": "12345",

            "To": "54321",

            "count": 1,

            "is_unicode": false,

            "price": 0.0055,

            "sent_date": "2015-07-16T17:25:18.63",

            "text": "Test SMS",

            "status": "Sent"

        }

    ],

    "ErrorMessage": "",

    "Status": 0

}


XML Response (Success)

<TheTexting xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<ErrorMessage/>
<Response xmlns:d2p1="http://schemas.datacontract.org/2004/07/RESTwebapi.Models">
<d2p1:Message>
<d2p1:From>12345</d2p1:From>
<d2p1:To>54321</d2p1:To>
<d2p1:is_unicode>false</d2p1:is_unicode>
<d2p1:count>1</d2p1:count>
<d2p1:message_id>8</d2p1:message_id>
<d2p1:sent_date>2015-07-16T17:25:18.63</d2p1:sent_date>
<d2p1:text>Test SMS</d2p1:text>
<d2p1:price>0.0055</d2p1:price>
<d2p1:status>Sent</d2p1:status>
</d2p1:Message>
</Response>
<Status>0</Status>
</TheTexting>

JSON Response (Failure)

{
"Response": null,
"ErrorMessage": "Parameters Missing",
"Status": 2
}


XML Response (Failure)

<TheTexting xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<ErrorMessage>Parameters Missing</ErrorMessage>
<Response i:nil="true"/>
<Status>2</Status>
</TheTexting>

Respond Codes

Code Meaning
0 Request is successful
1 Request has failed.
2 Parameters are missing.
3 Credentials are invalid.
4 Parameters are invalid.
5 Result has returned empty.
6 Status is invalid.