 
                 
                Search sent messages.
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/jsonXML end point
https://www.thetexting.com/rest/sms/xmlHTTP 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 | 
| Search By Message IDs | |
| message_id | Required. A list of message ids e.g: message_id=123&message_id=124. | 
| Search by recipient number and sent date | |
| to | Required. A recipient number. | 
| message_sent_date | Required. Message date submission MM-DD-YYYY. | 
Sample URL
https://www.thetexting.com/rest/sms/json/search/messages?api_key=your_api_Key&api_secret=your_api_secret&message_sent_date=07-16-2015&to=12133488198JSON Response (Success)
{
    "Response": [
        {
            "message_id": "11",
            "From": "16787188834",
            "To": "12133488198",
            "count": 1,
            "is_unicode": false,
            "price": 0.0055,
            "sent_date": "2015-07-16T17:41:06.42",
            "text": "Another Test",
            "status": "Sent"
        },
        {
            "message_id": "10",
            "From": "16787188834",
            "To": "12133488198",
            "count": 1,
            "is_unicode": false,
            "price": 0.0055,
            "sent_date": "2015-07-16T17:34:44.45",
            "text": "Test SMS",
            "status": "Sent"
        },
        {
            "message_id": "8",
            "From": "16787188834",
            "To": "12133488198",
            "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)
This XML file does not appear to have any style information associated with it. The document tree is shown below.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. |