Search » Rejection

Search rejected 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/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_sent_date Required. Message date submission MM-DD-YYYY.
to Optional. A recipient number.

Sample URL

https://www.thetexting.com/rest/sms/json/search/rejection?api_key=your_api_Key&api_secret=your_api_secret&message_sent_date=07-22-2015

JSON Response (Success)

{

    "Response": [

        {

            "message_id": "10012",

            "From": "12345678",

            "To": "18665336878",

            "count": 0,

            "is_unicode": false,

            "price": 0,

            "sent_date": "2015-07-22T08:00:32.377",

            "text": "Hello",

            "status": "Rejected"

        }

    ],

    "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>12345678</d2p1:From>
<d2p1:To>18665336878</d2p1:To>
<d2p1:is_unicode>false</d2p1:is_unicode>
<d2p1:count>0</d2p1:count>
<d2p1:message_id>10012</d2p1:message_id>
<d2p1:sent_date>2015-07-22T08:00:32.377</d2p1:sent_date>
<d2p1:text>Hello</d2p1:text>
<d2p1:price>0.0000</d2p1:price>
<d2p1:status>Rejected</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.