{"info":{"_postman_id":"9b565e2a-3825-492e-aef8-553f962a1c8e","name":"Transmit SMS","description":"<html><head></head><body><h2 id=\"api-reference-guide\">API Reference Guide</h2>\n<hr>\n<p>With so many SMS APIs on the market today, you might think that they all do the same thing: send text messages. But with our flexible and powerful suite of APIs, you can do more than that.</p>\n<p><strong>With our SMS messaging REST API you can:</strong></p>\n<p>* Send SMS messages<br>* Format numbers for SMS delivery<br>* Retrieve information about messages and campaigns sent<br>* Add and remove contacts<br>* Unsubscribe contacts<br>* Authorise email SMS accounts<br>* Retrieve account balance<br>* Lease virtual numbers and set options.<br>* Receive real time delivery reports (DLR) for all messages sent via callback<br>* Receive replies and inbound SMS messages via polling or callback<br>* Process link hits via polling or callback<br>* Setup, activate and deactivate keyword campaigns</p>\n<hr>\n<h2 id=\"getting-started\">Getting Started</h2>\n<p>The easiest way to start using the Transmit SMS API is by clicking the Run in Postman button above.</p>\n<p><a href=\"https://www.getpostman.com/\">Postman</a></p>\n<p>is a free tool which helps developers run and debug API requests, and is the source of truth for this documentation.</p>\n<p>Every endpoint you see documented here is readily available by running our Postman collection. Import the collection directly into the Postman app and access all saved examples from \"Examples\" dropdown in the upper right corner of the builder.</p>\n<p><img src=\"https://assets.postman.com/postman-docs/accessing-saved-examples.jpg\"></p>\n\n<hr>\n<h2 id=\"best-practices\">Best Practices</h2>\n<p>* Avoid excessive polling. If you are making a lot of GET requests consider using a callback instead.<br>* Understand rate limits. Default is 15 calls per second. This can be increased by request.</p>\n<hr>\n<h2 id=\"base-url\">Base URL</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>MMS: https://api.transmitmessage.com\nAll other calls: https://api.transmitsms.com\n\n</code></pre><hr>\n<h1 id=\"authentication\">Authentication</h1>\n<p>All API requests require your API credentials, you will find them once logged into your account on the SETTINGS page. Scroll down to API Settings to find your API key and set your API secret.</p>\n<p>Your API Secret can be anything you like. Think of the API Secret as a password field where you will need to enter an alphanumeric of your choice. Once you enter your chosen API Secret, click on the UPDATE PROFILE button to save your settings.</p>\n<p><img src=\"https://res.cloudinary.com/burst/image/upload/v1594795887/FyMeLX68fF7Q_fjtbi1.png\"></p>\n\n<p>For security purposes, API credentials must be passed as HTTP Basic Authentication headers not as CGI parameters. Enter your API key and API secret in the Username and Password fields:</p>\n<p><img src=\"https://assets.postman.com/postman-docs/basic-auth.jpg\"></p>\n\n<h2 id=\"api-key-related-error-response\">API Key related error response</h2>\n<p>If an API Key is missing, malformed, or invalid, you will receive a <code>401 Unauthorised</code> response code and the following JSON response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"error\": {\n        \"code\": \"AUTH_FAILED\",\n        \"description\": \"The auth data you have provided is invalid.\"\n    }\n}\n\n</code></pre><hr>\n<h2 id=\"request\">Request</h2>\n<p>All requests must be to the base URL. We provide you with an option of a response as a JSON object, or an XML string. You can choose which response you want by selecting the appropriate suffix (.json OR .xml) in your request. You can find both JSON and XML in code examples for each endpoint.</p>\n<hr>\n<h2 id=\"http-methods\">HTTP Methods</h2>\n<p>All requests are submitted through the HTTP POST or GET method using UTF-8 encoding and URL encoded values.</p>\n<hr>\n<h2 id=\"security\">Security</h2>\n<p>To ensure security &amp; privacy the API only works over HTTPS protocol for all requests. Also, for your own security, If you have a website with a form which sends SMS, be sure to send the request from your server and not directly from the browser. Otherwise, you could be giving away your API secret.</p>\n<hr>\n<h2 id=\"throttling\">Throttling</h2>\n<p>To provide the best service to all our customers we limit the number of API calls which can be made by each account to 15 calls per sec. For heavy users we can increase your throttling speed, but please contact us to discuss your requirements.</p>\n<p>If you exceed this limit we will return two indicators which you can use in your code to detect that you have been throttled.</p>\n<p>The first is the HTTP status code 429 \"Too Many Requests\", the second is the error code \"OVER_LIMIT\" in the error block of the response body.</p>\n<p>If this happens message requests will be dropped, they will not be retried.</p>\n<hr>\n<h2 id=\"timestamps\">Timestamps</h2>\n<p>All timestamps are in ISO8601 format, e.g. YYYY-MM-DD HH:MM:SS. The timezone is always UTC.</p>\n<hr>\n<h2 id=\"responses\">Responses</h2>\n<p>You can elect to return a JSON or XML response by adding the appropriate extension to the base url. An extension must be provided otherwise a 404 Page Not Found will be returned.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://api.transmitsms.com/send-sms.json\nhttps://api.transmitsms.com/send-sms.xml\n\n</code></pre><hr>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Some responses are too large to be returned in one go so we paginate. To identify which calls use pagination look for the \"page\" and \"max\" parameters in the parameter descriptions for each API call.</p>\n<p>These calls include a \"page\" block in the response with two values, \"count\" and \"number\". Count tells you how many pages are available and number indicates the page number you are on.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"page\":{\n        \"count\":1,\n        \"number\":1\n    }\n}\n\n</code></pre><p>The page parameter is used to request a certain page, it defaults to 1. The max parameter is used to limit the number of results returned per page, the default is 10, the maximum is 100.</p>\n<hr>\n<h2 id=\"error-codes\">Error Codes</h2>\n<p>Always check if your API call was successful or resulted in error. You may check the following</p>\n<p>* 200 OK response header.<br>* 4XX ERROR response header</p>\n<p>Please check the table below for common error constants. Note that some API functions can return custom errors of their own (listed in appropriate document sections). Check the error description for details, e.g. which field caused an error or which resource you don’t have access to.</p>\n<table><tbody><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr><tr><td><div>SUCCESS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>200</div><div><div><div><div></div></div></div><div></div></div></td><td><div>OK</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>AUTH_FAILED_NO_DATA</div><div><div><div><div></div></div></div><div></div></div></td><td><div>401</div><div><div><div><div></div></div></div><div></div></div></td><td><div>You have not provided auth data.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>AUTH_FAILED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>401</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The auth data you have provided is invalid.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>NOT_IMPLEMENTED</div><div><div><div><div></div></div></div><div></div></div></td><td><div>404</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The method you are requesting is unsupported.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>OVER_LIMIT</div><div><div><div><div></div></div></div><div></div></div></td><td><div>429</div><div><div><div><div></div></div></div><div></div></div></td><td><div>You have exceeded the request limit.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>FIELD_EMPTY</div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Required field is empty.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>FIELD_INVALID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Field has invalid format (see proper format in the description).</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>NO_ACCESS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>You don't have access to this feature</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>KEY_EXISTS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The resource with this key already exists.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>LEDGER_ERROR</div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Insufficient funds to carry out debit</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>BAD_CALLER_ID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The sender ID you have set is not valid or number is inactive or expired</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h1 id=\"common-api-connection-issues\">Common API Connection Issues</h1>\n<hr>\n<p>Thanks for taking the time to try our API. transmitsms.com has a very stable and robust enterprise level API infrastructure.</p>\n<p>If there is a known issue with our servers it will be announced in real time at:</p>\n<p><a href=\"//status.transmitsms.com\">status.transmitsms.com</a></p>\n<p>and</p>\n<p><a href=\"//www.twitter.com/transmitsms\">www.twitter.com/transmitsms</a></p>\n<p>If a transmitsms.com outage is not the cause of your connection problem or you are having any other type of issue please consider the following information.</p>\n<p>While our developers love to help out our clients, they are very busy and it can take some time to get a response from the team.</p>\n<p>Our API is very generic and therefore has many solutions and environments targeting it with many potential issues that may be affecting your connection.</p>\n<p>You will find it much quicker to troubleshoot the problem yourself and we have produced this guide to help you do just that.</p>\n<hr>\n<h2 id=\"troubleshooting-common-api-connection-problems\">Troubleshooting common API connection problems.</h2>\n<p>To troubleshoot your connection you should be prepared to use Google. By Googling error codes or common terms like \"HTTP API connection\" you should be able to find information on websites like Stack Overflow to help you</p>\n<p><a href=\"http://www.stackoverflow.com\">www.stackoverflow.com</a></p>\n<p>Consider checking your network topology, look at firewalls, load balancers and other network areas that maybe causing your server to not be able to connect.</p>\n<p>Most HTTP connection errors are caused by basic issues like incorrectly used auth or incorrectly formatted URLS.</p>\n<p>You should be familiar with the HTTP protocol.</p>\n<hr>\n<h2 id=\"here-are-some-suggested-articles-for-you-to-try\">Here are some suggested articles for you to try:</h2>\n<p><strong>How To Use Traceroute and MTR to Diagnose Network Issues</strong></p>\n<p><a href=\"//www.digitalocean.com/community/tutorials/how-to-use-traceroute-and-mtr-to-diagnose-network-issues\">www.digitalocean.com/community/tutorials/how-to-use-traceroute-and-mtr-to-diagnose-network-issues</a></p>\n<p><strong>10 tips for troubleshooting DNS problems</strong></p>\n<p><a href=\"//www.techrepublic.com/blog/10-things/10-tips-for-troubleshooting-dns-problems\">www.techrepublic.com/blog/10-things/10-tips-for-troubleshooting-dns-problems</a></p>\n<p><strong>Troubleshooting proxy firewall connections</strong></p>\n<p><a href=\"//searchsecurity.techtarget.com/tip/Troubleshooting-proxy-firewall-connections\">searchsecurity.techtarget.com/tip/Troubleshooting-proxy-firewall-connections</a></p>\n<p><strong>Diagnosing DNS resolution problems</strong></p>\n<p><a href=\"//developers.google.com/speed/public-dns/docs/troubleshooting\">developers.google.com/speed/public-dns/docs/troubleshooting</a></p>\n<p><strong>8 Linux Nslookup Commands to Troubleshoot DNS (Domain Name Server)</strong></p>\n<p><a href=\"//www.tecmint.com/8-linux-nslookup-commands-to-troubleshoot-dns-domain-name-server\">www.tecmint.com/8-linux-nslookup-commands-to-troubleshoot-dns-domain-name-server</a></p>\n<hr>\n<h2 id=\"still-got-problems\">Still got problems?</h2>\n<p>If you are an expert in diagnosing HTTP API connection problems, have scoured your code for that extra &amp; symbol that shouldn't be there or have any kind of problem that cannot be easily diagnosed. We can assist but you must provide ALL of the following information</p>\n<p><strong>API method being used?</strong></p>\n<p>i.e. send-sms</p>\n<p><strong>Language being used?</strong></p>\n<p>i.e. php, .Net</p>\n<p><strong>Are you using the relevant library?</strong></p>\n<p>Y/N</p>\n<p><strong>If you are using .NET have you tried the example app with your own API details and did it work?</strong></p>\n<p>Y/N</p>\n<p><strong>What are you trying to achieve with the API?</strong></p>\n<p>i.e. I'm trying to send an sms message to 12 recipients</p>\n<p><strong>What error are you getting from the API? Textual description given in the response.</strong></p>\n<p>i.e. ‘Not Authorised’</p>\n<p><strong>NB: WE MUST HAVE A HTTP REQUEST/RESPONSE CAPTURE (Without this we cannot help you)</strong></p>\n<p>If using one of the libraries please provide a capture of the HTTP Requests and Responses sent and received by the API. We recommend this tool for capturing the API calls:</p>\n<p><a href=\"http://www.telerik.com/fiddler\">http://www.telerik.com/fiddler</a></p>\n<p>Please provide the output of attempting the relevant API command call with curl, as provided on the API methods documentation page.</p>\n<p>If possible/comfortable, please provide a copy of or access to the relevant source code for your project.</p>\n<hr>\n<h1 id=\"http-callbacks\">HTTP Callbacks</h1>\n<p>The best way to get immediate notification on the events like SMS delivery or incoming messages, is to set up callback URLs. We will notify this URL immediately after the event occurs and, if the call was unsuccessful, we will retry a few times later. We perform a GET request.</p>\n<p>NB: If you need to pass a predefined parameter, you can include it in your URL.</p>\n<p><strong>Callbacks can be set in several different places within your account.</strong></p>\n<ol>\n<li>In the SETTINGS section of your account<br> Callbacks set there are the default for the account.</li>\n<li>In the send-sms API call<ol>\n<li>Callbacks for DLR and reply can be set as parameters when you make the send-sms call.</li>\n</ol>\n</li>\n<li>Forward to URL in Inbound Options for a dedicated virtual number (Reply Callback)</li>\n<li>Forward to URL in Keyword Options (Reply Callback)</li>\n<li>Forward to URL in List Automation (List Action Callback)</li>\n</ol>\n<hr>\n<h2 id=\"callback-priority\">Callback Priority</h2>\n<p><strong>Which callback URL is notified is prioritised as follows. Duplicate callbacks will not be sent.</strong></p>\n<ol>\n<li>send-sms call</li>\n<li>Forward to URL on feature</li>\n<li>Default URL in SETTINGS</li>\n</ol>\n<p>If you are finding that a callback is not firing from SETTINGS or a Forward to URL. It is likely you have one set on the send-sms call.</p>\n<hr>\n<h2 id=\"retries\">Retries</h2>\n<p>If we should not be able to reach your configured http callback endpoint, we will retry the attempt a maximum of 4 times with an increasing delay of 1 minute, 5 minute, 1 hour and finally 24 hours.</p>\n<h2 id=\"delivery-dlr-callback\">Delivery (DLR) Callback</h2>\n<p>DLR's or Delivery Receipts, are notifications received from the carriers relating to the success or otherwise of an attempted SMS Delivery. Your DLR Callback URL is the default URL we post incoming DLR's to. You can also set the DLR Callback URL separately for individual messages. This is done using a parameter on the send-sms call.</p>\n<p><strong>Parameters we include in our delivery callback request:</strong></p>\n<table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>message_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Your message ID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>mobile</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Recipient mobile number</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>datetime</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date/time of delivery. UTC.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>status</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><div><table><tbody><tr><th>DLR STATUS</th><th>DESCRIPTION</th></tr><tr><td><div>delivered</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Delivered to handset</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>pending</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No delivery report received from carrier. Allow up to 72hrs or use validity in send-sms call to process.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>soft-bounce</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Message was undeliverable due to handset switched off, out of range or other temporary deliverability issue.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>hard-bounce</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Handset was disconnected</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>user_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Your account ID</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://www.myserver.com/processdlr.php?myparameter=myvalue&amp;message_id=331694668&amp;mobile=61438333061&amp;datetime=2020-05-16 12:10:00&amp;status=delivered&amp;user_id=123456\n\n</code></pre><hr>\n<h2 id=\"reply-callback\">Reply Callback</h2>\n<p>Incoming SMS are broadly similar, with 2 subtly different forms:</p>\n<p>* <strong>SMS Replies:</strong> are messages received 'in response' to an SMS message sent by you. Responses can come in on both the System Shared Number Pool or any Dedicated Virtual Number, and will be posted to the Callback URL above if there was no URL set as a parameter in the send-sms call.<br>* <strong>Inbound SMS:</strong> are messages that are received originating from a users mobile phone and are not in response to a message sent. Inbound SMS can only be received on a Dedicated Virtual Number and will only be posted to the Default URL supplied above.</p>\n<p><strong>Parameters we include in our reply callback request:</strong></p>\n<table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>user_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Your account ID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>message_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Your message ID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>mobile</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Sender’s mobile</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>longcode</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The virtual number message was sent to</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>datetime_entry</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date/time that message was received. UTC</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>response</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Message text</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>response_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>ID assigned to incoming message</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>is_optout</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Opt-out flag. ‘yes’ or ‘no’</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://www.myserver.com/processreply.php?myparameter=myvalue&amp;user_id=54911&amp;message_id=331695745&amp;&amp;response=This is my reply&amp;response_id=35566670&amp;mobile=61438333061&amp;longcode=61429997672&amp;datetime_entry=2020-05-16 12:10:00&amp;is_optout=no\n\n</code></pre><hr>\n<h2 id=\"link-hits-callback\">Link Hits Callback</h2>\n<p>The default link hits callback URL is used to notify when a tapth.is/xxxxx URL defined in a message is clicked.</p>\n<p><strong>Parameters we include in our link hits callback request:</strong></p>\n<table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>list_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Your list ID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>message_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Your message ID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>mobile</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Sender’s mobile</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>longcode</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The number message was delivered to</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>datetime</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date/time that the click was recorded</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>message</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Message text</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>user_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Account ID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>link_hits</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Link hit count</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>firstname</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Firstname of contact that clicked</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>lastname</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Lastname of contact that clicked</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://www.myserver.com/processlinkhit.php?datetime=2020-05-16 13:23:46&amp;firstname=Brad&amp;lastname=Down&amp;link_hits=1&amp;list_id=3201749&amp;longcode=TRANSMITSMS&amp;message=This is a link hit callback test\n TapTh.is/clkVMt8z \nUnsubRep.ly/3hHm1u8u&amp;message_id=331696764&amp;mobile=61438333061&amp;rate=10&amp;user_id=54911\n\n</code></pre><hr>\n<h2 id=\"list-action-callback\">List Action Callback</h2>\n<p>A notification for contacts added too, or removed from lists is available via the <strong>Forward to URL</strong> option in the <strong>AUTOMATION</strong> settings for a list.</p>\n<p><strong>Parameters we include in our list action callback request:</strong></p>\n<table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>type</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Add or Delete</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>datetime_entry</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date/time of action. UTC.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>list_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>ID of list.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>mobile</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Mobile of number actioned</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>firstname</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Firstname of contact</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>lastname</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Lastname of contact</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>Custom field 1-10</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Custom field names and values will be added also</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://www.myserver.com/processdlr.php?Carrier=Telstra&amp;Email=harrisondown06@gmail.com&amp;Handset=iPhone 7&amp;datetime_entry=2020-05-16 13:13:20&amp;firstname=Harrison&amp;lastname=Down&amp;list_id=4026600&amp;mobile=61447775960&amp;type=delete\n\n</code></pre><hr>\n<h1 id=\"making-your-first-call\">Making Your First Call</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Common API Connection Issues","slug":"common-api-connection-issues"},{"content":"HTTP Callbacks","slug":"http-callbacks"},{"content":"Making Your First Call","slug":"making-your-first-call"}],"owner":"11854397","collectionId":"9b565e2a-3825-492e-aef8-553f962a1c8e","publishedId":"SzzrZuR6","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-06-30T23:00:50.000Z"},"item":[{"name":"Quick Start Guide","item":[{"name":"Sending single message","id":"3bea37a5-490d-4a78-bb29-854b165478a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.transmitsms.com/send-sms.json","description":"<hr />\n<h2 id=\"sending-a-single-message-and-receiving-a-reply\">Sending a single message and receiving a reply</h2>\n<p>In its most simple form the send-sms API call can send the message and set a callback to receive a reply to your application using a single command.</p>\n","urlObject":{"protocol":"https","path":["send-sms.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"dc37e202-59b7-4778-827b-25ac4835a8f6","name":"Example ","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.transmitsms.com/send-sms.json?message=Hi {myvariable}, this is my message&reply_callback=https://www.myserver.com/processreply.php?myparameter=myvalue&to=1234567890","protocol":"https","host":["api","transmitsms","com"],"path":["send-sms.json"],"query":[{"key":"message","value":"Hi {myvariable}, this is my message"},{"key":"reply_callback","value":"https://www.myserver.com/processreply.php?myparameter=myvalue"},{"key":"to","value":"1234567890"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Jun 2020 04:47:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1; Messages=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"message_id\": 340263609,\n    \"send_at\": \"2020-06-21 04:47:25\",\n    \"recipients\": 1,\n    \"cost\": 0.087,\n    \"sms\": 1,\n    \"delivery_stats\": {\n        \"delivered\": 0,\n        \"pending\": 0,\n        \"bounced\": 0,\n        \"responses\": 0,\n        \"optouts\": 0\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"3bea37a5-490d-4a78-bb29-854b165478a1"},{"name":"Add list  and upload","id":"f28eda42-b960-4c90-9766-476bba383601","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.transmitsms.com/add-contacts-bulk.json","description":"<h2 id=\"sending-to-a-lot-of-recipients-quickly\">Sending to a lot of recipients quickly</h2>\n<p>Single SMS sends are limited to 15 calls per second. The best way to process large volumes of messages is to add contacts to a list and then send as a campaign.</p>\n<p>Use the add-contacts-bulk call to create a list, custom fields and upload your file in a single call.</p>\n","urlObject":{"protocol":"https","path":["add-contacts-bulk.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"6cb68a49-0729-423a-9145-82ff4be6ad59","name":"Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.transmitsms.com/add-contacts-bulk.json?name=My Large Customer List&field_1=Postcode&field_2=Email&file_url=https://www.myserver.com/mylist.csv","protocol":"https","host":["api","transmitsms","com"],"path":["add-contacts-bulk.json"],"query":[{"key":"name","value":"My Large Customer List"},{"key":"field_1","value":"Postcode"},{"key":"field_2","value":"Email"},{"key":"file_url","value":"https://www.myserver.com/mylist.csv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Jun 2020 05:22:18 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 4200327,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"f28eda42-b960-4c90-9766-476bba383601"},{"name":"Send campaign to list","id":"4b63a4bf-aea9-4cad-93d3-7f2df058402a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.transmitsms.com/send-sms.json","description":"<p>Use the send-sms call, however instead of setting the to parameter use the list id that was returned in the response of the add-contacts-bulk call above.</p>\n","urlObject":{"protocol":"https","path":["send-sms.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"0bcbf6f6-8b56-4742-b998-a890edcf519f","name":"Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.transmitsms.com/send-sms.json?message=Hi [firstname], this is my message&reply_callback=https://www.myserver.com/processreply.php?myparameter=myvalue&list_id=4070887","protocol":"https","host":["api","transmitsms","com"],"path":["send-sms.json"],"query":[{"key":"message","value":"Hi [firstname], this is my message"},{"key":"reply_callback","value":"https://www.myserver.com/processreply.php?myparameter=myvalue"},{"key":"list_id","value":"4070887"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Jun 2020 05:25:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1; Messages=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"message_id\": 340267059,\n    \"send_at\": \"2020-06-21 05:25:59\",\n    \"recipients\": 1,\n    \"cost\": 0.087,\n    \"sms\": 1,\n    \"list\": {\n        \"id\": 4070887,\n        \"name\": \"My Test List\"\n    },\n    \"delivery_stats\": {\n        \"delivered\": 0,\n        \"pending\": 0,\n        \"bounced\": 0,\n        \"responses\": 0,\n        \"optouts\": 0\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"4b63a4bf-aea9-4cad-93d3-7f2df058402a"},{"name":"Delivery Receipt","id":"d06c3aa5-f653-4621-8360-423731404687","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.transmitsms.com/send-sms.json","description":"<hr />\n<h2 id=\"dlr-delivery-receipt-callbacks\">DLR (Delivery Receipt) callbacks</h2>\n<p>DLR's or Delivery Receipts, are notifications received from the carriers relating to the success or otherwise of an attempted SMS Delivery. Your DLR Callback URL is the default URL we post incoming DLR's to. You can also set the DLR Callback URL separately for individual messages. This is done using a parameter on the send-sms call.</p>\n<h2 id=\"polling-for-reports\">Polling for reports</h2>\n<p>There are 4 different API calls that can be used to retrieve information about messages sent from the system. They differ slightly depending on the complexity of the solution you are trying to develop and the choice is one of features vs. performance. </p>\n<p>The following table lists the responses that each call returns use this to figure out what level of reporting you need.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>CALL</th>\n<th>DESCRIPTION</th>\n<th>LIST ID</th>\n<th>LIST NAME</th>\n<th>MESSAGE ID</th>\n<th>RECIPIENT COUNT</th>\n<th>MESSAGE CONTENT</th>\n<th>MESSAGE COUNT</th>\n<th>MOBILE NUMBER</th>\n<th>SENDER ID</th>\n<th>TIME SENT</th>\n<th>TIME DELIVERED</th>\n<th>DELIVERY STATUS</th>\n<th>COST</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>get-sms</td>\n<td>Get information about a message or campaign that has been sent.</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️Template</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>❌</td>\n<td>✔️</td>\n<td>❌</td>\n<td>✔️Generic</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>get-sms-sent</td>\n<td>List all recipients and their delivery status from a message send.</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>❌</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>❌</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️ Specific</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>get-sms-stats</td>\n<td>Get a report on a message or campaign that has been sent</td>\n<td>❌</td>\n<td>❌</td>\n<td>❌</td>\n<td>✔️</td>\n<td>❌</td>\n<td>✔️</td>\n<td>❌</td>\n<td>❌</td>\n<td>❌</td>\n<td>❌</td>\n<td>✔️ Specific</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>get-sms-delivery-stats</td>\n<td>Get a detailed report and information about a specific message to a specific recipient.</td>\n<td>❌</td>\n<td>❌</td>\n<td>✔️</td>\n<td>❌</td>\n<td>✔️ Complete</td>\n<td>❌</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️</td>\n<td>✔️ Generic</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["send-sms.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"a6d28fd6-0eec-4e1f-b5dc-fcbabca11c77","name":"Example ","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.transmitsms.com/send-sms.json?message=Hi {myvariable}, this is my message&dlr_callback=https://www.myserver.com/processdlr.php?myparameter=myvalue&to=1234567890","protocol":"https","host":["api","transmitsms","com"],"path":["send-sms.json"],"query":[{"key":"message","value":"Hi {myvariable}, this is my message"},{"key":"dlr_callback","value":"https://www.myserver.com/processdlr.php?myparameter=myvalue"},{"key":"to","value":"1234567890"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Jun 2020 04:47:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1; Messages=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"message_id\": 340263609,\n    \"send_at\": \"2020-06-21 04:47:25\",\n    \"recipients\": 1,\n    \"cost\": 0.087,\n    \"sms\": 1,\n    \"delivery_stats\": {\n        \"delivered\": 0,\n        \"pending\": 0,\n        \"bounced\": 0,\n        \"responses\": 0,\n        \"optouts\": 0\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"d06c3aa5-f653-4621-8360-423731404687"}],"id":"1777c857-7342-4669-bc4a-7a288da14973","description":"<p>Our simple REST API allows you to get up and running in minutes, with just a single line of code. For advanced users, dig deeper into our technology and check our reference guides for more detailed functions and calls. We also offer a number of client libraries and code samples in order to make your experience using the API suite as easy and intuitive as possible.</p>\n","event":[{"listen":"prerequest","script":{"id":"94b1ab0a-594d-4a4d-86c7-1164441279a6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c10ca520-b49c-444a-b710-77376530e5bc","type":"text/javascript","exec":[""]}}],"_postman_id":"1777c857-7342-4669-bc4a-7a288da14973"},{"name":"SMS","item":[{"name":"Send SMS","id":"74911cf8-dec6-4319-a499-7f535a7fd08c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://api.transmitsms.com/send-sms.json","description":"<hr />\n<h1 id=\"send-sms\">Send SMS</h1>\n<p>You can elect to pass us the recipient numbers from your database each time you make a call, or you can elect to store recipient data in a contact list and submit only the list_id to trigger the send. This is best for large databases. To add a list please refer to the add-list call.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><tbody><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr><tr><td><div><b>message</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Message Content</b></p><p>Can be up to 612 alphanumeric characters. A part is 160 characters for a single SMS or 153 characters per part for multi-part SMS. If the message contains Unicode UTF8 encoded characters such as emoji’s or non latin character sets, then a single part is 70 characters or 67 characters for multiple parts.</p><p>More information on message length and encoding: </p><p><a href=\"https://support.transmitsms.com/support/solutions/articles/44001940835-sms-message-length-and-character-count\">SMS message length and character count</a></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>YES</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>to</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Recipient Number/s</b></p><p>Single number or set of up to 500 comma separated numbers to send the SMS to. Invalid numbers will be ignored.</p><p>Number must be defined in E.164 international format. You can use <b>countrycode</b> parameter to format numbers that are in local format.</p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If <b>list_id </b>not set</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>list_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Recipient list</b></p><p>This ID is the numerical reference to one of your recipient lists. It is found in the URL and displayed on a destination list page in your account. </p><p>A list ID can also be created using the <b>add-list</b> call.</p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If <b>to</b> not set</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>countrycode</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Format the to number in international format.</b></p><p>2 letter ISO 3166 format country code or country name. Automatically formats numbers to international format required for reliable SMS delivery. eg. In Australia 0422222222 will become 6142222222 when set to AU or Australia. If not set to numbers must be defined in E.164 international format.</p><div><table><tbody><tr><th>COUNTRY</th><th>COUNTRY CODE</th><th>LOCAL</th><th>INTERNATIONAL</th></tr><tr><td><div>Australia</div><div><div><div><div></div></div></div><div></div></div></td><td><div>au</div><div><div><div><div></div></div></div><div></div></div></td><td><div>0491570156</div><div><div><div><div></div></div></div><div></div></div></td><td><div>61491570156</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>New Zealand</div><div><div><div><div></div></div></div><div></div></div></td><td><div>nz</div><div><div><div><div></div></div></div><div></div></div></td><td><div>0212670129</div><div><div><div><div></div></div></div><div></div></div></td><td><div>64212670129</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>United Kingdom</div><div><div><div><div></div></div></div><div></div></div></td><td><div>gb</div><div><div><div><div></div></div></div><div></div></div></td><td><div>0750017696</div><div><div><div><div></div></div></div><div></div></div></td><td><div>44750017696</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>United States</div><div><div><div><div></div></div></div><div></div></div></td><td><div>us</div><div><div><div><div></div></div></div><div></div></div></td><td><div>2513551145</div><div><div><div><div></div></div></div><div></div></div></td><td><div>12513551145</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>from</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Sender ID </b></p><p>Usually a dedicated virtual mobile number (VMN) or short code found in the NUMBERS section of your account. If no value is set here, it will default to the shared Sender ID for the country you are sending to. Can also be an 11 character alphanumeric sender if available for the destination country. You will need to click on the Add Sender ID button found in the NUMBERS section of your account in order to request the use of an Alphanumeric Sender ID.</p><p><br />Sender ID functionality varies by country.</p><p><a href=\"https://portal.transmitsms.com/s/article/Global-Sender-ID-Information\">Global Sender ID Information</a></p><p>Mobile and dedicated VMN's should be in international format. Alphanumeric senders (cannot be replied to) can have a maximum of 11 characters. No spaces. </p><p>If opt out is required, using Custom Sender ID, use parameter [unsub-reply-link] in message to insert opt out link.<br /></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>send_at</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>datetime</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Schedule a message at a specific time.</b></p><p>Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>validity</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Expire a message send if it is undeliverable</b></p><p>Specify the maximum time to attempt to deliver. In minutes, 0 (zero) or not set implies maximum validity period.  </p><p>If a message is not delivered and not failed it is given a PENDING status in the system. These messages can be requested to be expired by the carrier after a certain time. This will return a DLR with a soft-bounce value. If no value is set, messages that remain in a PENDING state will be expired by the system automatically after 72hrs.</p><p><a href=\"https://support.transmitsms.com/support/solutions/articles/44001940868-what-does-a-message-with-a-pending-status-mean-\">What does a message with a pending status mean?</a></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>replies_to_email</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Send Replies to this Email</b></p><p>Specify an email address to send responses to this message. Email will come from the email address @transmitsms.com eg. 0456789010@transmitsms.com</p><p><b>NOTE:</b> If expectation is for replies to this email to be returned to the recipient as SMS then the email address must be authorised to send messages in your account under the 'EMAIL SMS' section. Emails can also be authorised using the add-email call.</p><p><a href=\"https://support.transmitsms.com/support/solutions/articles/44001940840-how-to-set-up-email-sms\">How to set up Email SMS</a></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>tracked_link_url</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>url</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Converts this URL into a unique shortened tracking link</b></p><p>Converts this URL to unique tapth.is/xxxxxx tracking link for each contact. Inserted into message with variable <b>[tracked-link]</b>. Only one <b>[tracked-link]</b> can be defined per message.</p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>link_hits_callback</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>url</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Send a link hit notification to this callback URL</b></p><p>A URL on your system which we can call to notify you of a hit on your <b>[tracked-link]</b>. If required, this parameter can be different for each message sent.</p><p>Will override the default DLR Callback URL if set in the <b>SETTINGS</b> section of your account. </p><p><a href=\"https://developer.transmitsms.com/?version=latest#http-callbacks\">HTTP Callbacks</a></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>dlr_callback</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>url</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Send a delivery notification to this callback URL</b></p><p>A URL on your system which we can call to notify you of Delivery Receipts. If required, this parameter can be different for each message sent.</p><p>Will override the default DLR Callback URL if set in the <b>SETTINGS</b> section of your account. </p><p><a href=\"https://developer.transmitsms.com/?version=latest#http-callbacks\">HTTP Callbacks</a></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>reply_callback</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>url</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Send a reply notification to a callback URL</b></p><p>A URL on your system which we can call to notify you of incoming messages. If required, this parameter can be different for each message sent.</p><p>Will override the default Reply Callback URL if set in the <b>SETTINGS</b> section of your account.</p><p><a href=\"https://developer.transmitsms.com/?version=latest#http-callbacks\">HTTP Callbacks</a></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h2 id=\"responses\">Responses</h2>\n<table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>message_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Numeric ID assigned to the message sent. </b></p><p>This can be used in conjunction with other calls to retrieve information and reporting about the message sent.</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>send_at</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Date and time that message was sent from your account</b></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>recipients</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Recipient count</b><br />Count of number of recipients message was sent to either in list or to parameter.<br /></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>cost</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Total cost of all messages</b></p><p>Returned as value per account currency to 3 decimal places 0.000</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>sms</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Total number of message parts delivered</b></p><p>If the message is longer than 160 characters this will return count of all parts. Eg. if a 180 character message is delivered to 2 recipients. Value returned will be 4.</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>list</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Information about the list the message was sent to</b><br /><br /></p><div><table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>This ID is the numerical reference to one of your recipient lists. It is found in the URL and displayed on a destination list page in your account. </p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>name</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of the list that message was sent to.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>delivery_stats</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>This response has been deprecated</b><br />To retrieve live delivery stats use DLR callback or to poll for stats later use <b>get-sms-delivery-status</b> call.<br /></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>error</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Error messages related to this call, for general errors see the API<a href=\"https://developer.transmitsms.com/?version=latest#intro\">Introduction</a><br /><br /></p><div><table><tbody><tr><th>CODE<br /></th><th>HEADER</th><th>DESCRIPTION</th></tr><tr><td><div><b>LEDGER_ERROR</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>There was a problem with payment. Please check the output for more details.<br /></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>LIST_EMPTY</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The list you provided doesn't have active recipients.<br /></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>RECIPIENTS_ERROR</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No valid recipients left after validation.<br /></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["send-sms.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"27edaba3-68c8-47e8-92b5-38caab44724d","name":"Example 2","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message","value":"This is my message, click on my link [tracked-link]","type":"text"},{"key":"list_id","value":"4070887","type":"text"},{"key":"from","value":"61434008437","type":"text"},{"key":"tracked_link_url","value":"https://www.twitter.com/transmitsms","type":"text"}],"options":{"raw":{"language":"text"}}},"url":"https://api.transmitsms.com/send-sms.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 18 Jun 2020 02:42:07 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1; Messages=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <message_id>339683245</message_id>\n    <send_at>2020-06-18 02:42:06</send_at>\n    <recipients>1</recipients>\n    <cost>0.087</cost>\n    <sms>1</sms>\n    <list>\n        <id>4070887</id>\n        <name>My Test List</name>\n    </list>\n    <delivery_stats>\n        <delivered>0</delivered>\n        <pending>0</pending>\n        <bounced>0</bounced>\n        <responses>0</responses>\n        <optouts>0</optouts>\n    </delivery_stats>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"2a656e05-ad42-4179-a9aa-031fd50568cc","name":"Example 1","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://api.transmitsms.com/send-sms.json?message=Hello SMS&to=61477333222&from=61477333222","protocol":"https","host":["api","transmitsms","com"],"path":["send-sms.json"],"query":[{"key":"message","value":"Hello SMS","description":"Message text"},{"key":"to","value":"61477333222","description":"\tNumber or set of up to 500 numbers to send the SMS to. If your number set has some invalid numbers, they won’t cause validation error, but will be returned as ‘fails’ parameter of the response (see example 3).\nNumber must be defined in international format.\n\nSome examples by destination:\n\nAU 61491570156, NZ 64212670129, SG 6598654321, UK 44750017696, US 1213811413"},{"key":"from","value":"61477333222","description":"Set the alphanumeric Caller ID, mobile numbers should be in international format. Maximum 11 characters. No spaces. If not set will use shared number pool."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Jun 2020 23:06:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1; Messages=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"message_id\": 339031121,\n    \"send_at\": \"2020-06-15 23:06:03\",\n    \"recipients\": 1,\n    \"cost\": 0.087,\n    \"sms\": 1,\n    \"delivery_stats\": {\n        \"delivered\": 0,\n        \"pending\": 0,\n        \"bounced\": 0,\n        \"responses\": 0,\n        \"optouts\": 0\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"7eab4511-f65c-4474-9116-2b8f96662de4","name":"Example 3","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message","value":"This is my message, click on my link [tracked-link]","type":"text"},{"key":"to","value":"0492153779","type":"text"},{"key":"countrycode","value":"au","type":"text"},{"key":"from","value":"61477333222","type":"text"},{"key":"send_at","value":"2020-06-18 09:37:00","type":"text"},{"key":"dlr_callback","value":"https://postb.in/1587973092747-7193687036633","type":"text"},{"key":"reply_callback","value":"https://postb.in/1587973092747-7193687036633","type":"text"},{"key":"link_hits_callback","value":"https://postb.in/1587973092747-7193687036633","type":"text"},{"key":"validity","value":"30","type":"text"},{"key":"replies_to_email","value":"transmitsms@gmail.com","type":"text"},{"key":"tracked_link_url","value":"https://www.twitter.com/transmitsms","type":"text"}],"options":{"raw":{"language":"text"}}},"url":"https://api.transmitsms.com/send-sms.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jun 2020 02:52:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1; Messages=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"message_id\": 339686189,\n    \"send_at\": \"2020-06-18 09:37:00\",\n    \"recipients\": 1,\n    \"cost\": 0.087,\n    \"sms\": 1,\n    \"delivery_stats\": {\n        \"delivered\": 0,\n        \"pending\": 0,\n        \"bounced\": 0,\n        \"responses\": 0,\n        \"optouts\": 0\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"74911cf8-dec6-4319-a499-7f535a7fd08c"},{"name":"Cancel SMS","id":"f97da28d-3907-4b95-b9d0-9dad52127b6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/cancel-sms.json","description":"<h2 id=\"cancel-a-scheduled-sms\">Cancel a scheduled SMS</h2>\n<p>Messages scheduled can be cancelled using the message ID.</p>\n<p>You can elect to return a JSON or XML response by adding the appropriate extension to the base url (See examples).</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>id</strong></td><td>integer</td><td><p><strong>Numeric ID assigned to the message sent. </strong></p><p>This ID was returned in the send-sms response.</p></td><td>YES</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["cancel-sms.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"3dbeb381-ce5d-4182-83a8-fe57ee388c4c","name":"Example 2","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"339815008","type":"text"}]},"url":"https://api.transmitsms.com/cancel-sms.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 18 Jun 2020 11:20:59 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <success>OK</success>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"db1744b5-06a2-4b4e-8105-ad8b4860e1d7","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":"339814892","type":"text"}]},"url":"https://api.transmitsms.com/cancel-sms.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jun 2020 11:19:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": \"OK\",\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"f97da28d-3907-4b95-b9d0-9dad52127b6e"},{"name":"Format Number","id":"ef1b313f-0281-4a40-98c0-ea348a41d9c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/format-number.json","description":"<h1 id=\"format-a-number-for-sms-delivery\">Format a number for SMS delivery</h1>\n<p>In the majority of cases, mobile phone number data coming from external systems is not ideal for SMS delivery. For highest reliability and to be able to route correctly a mobile number should be formatted in international format E.164</p>\n<p>Normally however a number is stored in a CRM or contact database in local format, with spaces, hyphens and other types of unwanted characters that can cause a delivery to fail. The format-number call is used to sanitise a number by combining the country and the number. eg.</p>\n<blockquote>\n<p>Australia 0438 333 061 will become 61438333061</p>\n</blockquote>\n<blockquote>\n<p>New Zealand 0212172782 will become 64212172782</p>\n</blockquote>\n<blockquote>\n<p>USA (281) 869-1226 will become 12818691226</p>\n</blockquote>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>msisdn</strong></td><td>integer<br /></td><td><p><strong>Numeric to check</strong></p><p>Badly formatted number coming from source such as CRM or exported list.</p></td><td>YES</td></tr><tr><td><strong>countrycode</strong></td><td>string</td><td><strong>2 letter ISO countrycode or country name</strong><br /><a href=\"https://support.transmitsms.com/support/solutions/articles/44001940675-global-sms-delivery-list\">Global SMS delivery list</a></td><td>YES</td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>countrycode</strong></td><td><p><strong>International dialling code for destination country</strong></p></td></tr><tr><td><strong>international</strong></td><td><p><strong>Reformatted number in international format</strong></p></td></tr><tr><td><strong>isValid</strong></td><td><p><strong>Checks to see if number is valid</strong></p><p>Returns true or false.</p></td></tr><tr><td><strong>national_leading_zeroes</strong></td><td><p><strong>Unused, currently returns as per national_number</strong></p></td></tr><tr><td><strong>national_number</strong></td><td><p><strong>Reformatted number without leading 0</strong></p></td></tr><tr><td><strong>rawinput</strong></td><td><strong>Unused, always returns null</strong></td></tr><tr><td><strong>type</strong></td><td><strong>Returns numeric value depending on type of number</strong><br /><table><thead><tr><th>VALUE</th><th>TYPE</th></tr></thead><tbody><tr><td>0</td><td>Landline</td></tr><tr><td>1</td><td>Mobile Number</td></tr><tr><td>10</td><td>Invalid number</td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["format-number.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"c365164a-f3eb-4d06-af6a-e4f1bd0fc90b","name":"Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"msisdn","value":"96112234","type":"text"},{"key":"countrycode","value":"sg","type":"text"}]},"url":"https://api.transmitsms.com/format-number.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Jun 2020 11:01:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"number\": {\n        \"countrycode\": 65,\n        \"nationalnumber\": 96112234,\n        \"national_leading_zeroes\": 96112234,\n        \"rawinput\": null,\n        \"international\": 6596112234,\n        \"type\": 1,\n        \"isValid\": true\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"ef1b313f-0281-4a40-98c0-ea348a41d9c8"},{"name":"Get Responses by MessageID, Keyword or Mobile","id":"9d6fc4ac-4748-4aee-8346-dc9e8a1a73fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/get-sms-responses.json","description":"<p>Responses to your outgoing messages can be picked up in a few different ways.</p>\n<p>Your DLR Callback URL in your account settings, is the default URL we post incoming DLR's to. You can also set the DLR Callback URL separately for individual messages, using a parameter on the send-sms call. You can also poll the following endpoints for responses.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><tbody><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr><tr><td><b>message_id</b></td><td>integer</td><td><p><b>Numeric ID assigned to the message sent. </b></p><p>This ID was returned in the <a href=\"https://developer.transmitsms.com/?version=latest#74911cf8-dec6-4319-a499-7f535a7fd08c\">send-sms</a> response</p></td><td>If <b>keyword_id</b> or <b>keyword</b> not set</td></tr><tr><td><b>start</b></td><td>datetime</td><td><b>A date within the last 12 months to start the report from</b><br />Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00<br /><br />If start and end date not supplied will get everything from last 30 days only.</td><td>NO</td></tr><tr><td><b>end</b></td><td>datetime</td><td><b>A date within the last 12 months to end the report at</b><br />Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00<br /><br />If start and end date not supplied will get everything from last 30 days only.</td><td>NO</td></tr><tr><td><b>keyword_id</b></td><td>integer</td><td><p><b>Numeric ID assigned to the keyword. </b></p><p>ID is assigned on creation of keyword in your account. A keyword can be created using <b>add-keyword</b> request.</p><p>Keyword ID can be returned using the <b>get-keyword</b> request.</p><p>NOTE: A keyword IS NOT a specific string within the message.</p></td><td>If <b>message_id </b>or <b>keyword</b> not set</td></tr><tr><td><b>keyword</b></td><td>string</td><td><p><b>Keyword name</b></p><p>Name is assigned on creation of keyword in your account. A keyword can be created using <b>add-keyword</b> request.</p><p>Keyword name can be returned using the <b>get-keyword</b> request.</p><p>NOTE: A keyword IS NOT a specific string within the message.</p></td><td>If <b>message_id </b>or <b>keyword_id</b> not set</td></tr><tr><td><b>number</b></td><td>integer</td><td><p><b>Filter results by Virtual Mobile Number (VMN)</b></p><p>Get responses for messages containing a keyword received on a specific VMN. </p><p>Numbers can be returned using the <b>get-numbers</b> request.</p></td><td>If <b>keyword</b> is set</td></tr><tr><td><b>msisdn</b></td><td>integer</td><td><p><b>Filter results by Responder Mobile Number (VMN)</b></p><p>Get responses to messages that were from a specific mobile number.</p></td><td>NO</td></tr><tr><td><b>include_original</b></td><td>boolean</td><td><b>Include text of message that reply was sent to</b></td><td>NO</td></tr><tr><td><b>page</b></td><td>integer</td><td><b>Page number, for pagination</b></td><td>NO</td></tr><tr><td><b>max</b></td><td>integer</td><td><p><b>Maximum results returned per page</b></p></td><td>NO</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-sms-responses.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"19edea75-ac31-495d-9780-0a355f915dd6","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"},{"key":"page","value":"1","type":"text"},{"key":"max","value":"25","type":"text"},{"key":"include_original","value":"true","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-responses.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:27:57 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <page>\n        <count>1</count>\n        <number>1</number>\n    </page>\n    <total>1</total>\n    <responses>\n        <item>\n            <id>36573149</id>\n            <message_id>339814842</message_id>\n            <list_id>4070947</list_id>\n            <received_at>2020-06-23 10:03:44</received_at>\n            <first_name/>\n            <last_name/>\n            <msisdn>61478038915</msisdn>\n            <response>Hi There, this is a sample response</response>\n            <longcode>61429720235</longcode>\n            <original_message>This is my message, click on my link TapTh.is/hO2HL7b0</original_message>\n        </item>\n    </responses>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"5cd439c6-de69-4627-8957-3055ad515e8b","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"},{"key":"page","value":"1","type":"text"},{"key":"max","value":"25","type":"text"},{"key":"include_original","value":"true","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-responses.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:05:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"total\": 1,\n    \"responses\": [\n        {\n            \"id\": 36573149,\n            \"message_id\": 339814842,\n            \"list_id\": 4070947,\n            \"received_at\": \"2020-06-23 10:03:44\",\n            \"first_name\": null,\n            \"last_name\": null,\n            \"msisdn\": 61478038915,\n            \"response\": \"Hi There, this is a sample response\",\n            \"longcode\": 61429720235,\n            \"original_message\": \"This is my message, click on my link TapTh.is/hO2HL7b0\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"9d6fc4ac-4748-4aee-8346-dc9e8a1a73fc"},{"name":"Get Responses by  Time Frame","id":"b895f97a-6dfe-4006-ba3e-f5d4082eaa35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.transmitsms.com/get-user-sms-responses.json","description":"<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>start</strong></td><td>datetime</td><td><p><strong>A date within the last 12 months to start the report from </strong><br />Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p><p>If start and end date not supplied will get everything from last 30 days only.</p></td><td>NO</td></tr><tr><td><strong>end</strong></td><td>datetime</td><td><p><strong>A date within the last 12 months to end the report at <br /></strong>Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p><p>If start and end date not supplied will get everything from last 30 days only.</p></td><td>NO</td></tr><tr><td><strong>keywords</strong></td><td>boolean</td><td><p><strong>Filter by keyword responses</strong><br />By default all responses will be returned.</p><table><thead><tr><th>VALUE</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>only</strong></td><td>Only include keyword responses</td></tr><tr><td><strong>omit</strong></td><td>Omit keyword responses</td></tr></tbody></table></td><td>NO</td></tr><tr><td><strong>include_original</strong></td><td>boolean</td><td><strong>Include text of message that reply was sent to</strong><br />Defaults to <strong>false</strong> if not supplied set to <strong>true</strong> to return.<br /></td><td>NO</td></tr><tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td>NO</td></tr><tr><td><strong>max</strong></td><td>integer</td><td><p><strong>Maximum results returned per page</strong></p></td><td>NO</td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>id</strong></td><td><p><strong>Numeric ID assigned to the message received</strong></p></td></tr><tr><td><strong>message_id</strong></td><td><p><strong>Numeric ID assigned to the message that was responded to</strong></p></td></tr><tr><td><strong>list_id</strong></td><td><strong>Numeric ID of the list that the original message that sent to</strong><br />Returns 0 if message was not sent to a list.</td></tr><tr><td><strong>received_at</strong></td><td><p><strong>Date and time that response was received to your account</strong></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></td></tr><tr><td><strong>first_name</strong></td><td><p><strong>First name of responder</strong></p><p>Retrieved from list contact if available.</p></td></tr><tr><td><strong>last_name</strong><br /></td><td><p><strong>Last name of responder</strong></p><p>Retrieved from list contact if available.</p></td></tr><tr><td><strong>msisdn</strong></td><td><strong>Mobile number of responder</strong></td></tr><tr><td><strong>error</strong></td><td>Error messages related to this call, for general errors see the API <a href=\"https://developer.transmitsms.com/en/support/solutions/articles/44001940916\">Introduction</a><br /><br /><table><thead><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>FIELD_INVALID</strong></td><td>400</td><td>If you provide 'keyword', you must provide 'number'</td></tr><tr><td><strong>FIELD_INVALID</strong></td><td>400</td><td>Field \\\"keyword_id\\\" has wrong type, expected type - numeric</td></tr><tr><td><strong>NO_ACCESS</strong></td><td>400</td><td>You do not have access to this ‘message’</td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-user-sms-responses.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"b9624e16-1d61-459f-97be-35533824e930","name":"Example 2","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"url":"https://api.transmitsms.com/get-user-sms-responses.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:30:18 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <page>\n        <count>1</count>\n        <number>1</number>\n    </page>\n    <total>4</total>\n    <responses>\n        <item>\n            <id>36573149</id>\n            <message_id>339814842</message_id>\n            <list_id>4070947</list_id>\n            <received_at>2020-06-23 10:03:44</received_at>\n            <first_name/>\n            <last_name/>\n            <msisdn>61478038915</msisdn>\n            <response>Hi There, this is a sample response</response>\n            <longcode>61429720235</longcode>\n        </item>\n        <item>\n            <id>36573132</id>\n            <message_id>340267059</message_id>\n            <list_id>4070887</list_id>\n            <received_at>2020-06-23 10:03:05</received_at>\n            <first_name>Ella</first_name>\n            <last_name>B</last_name>\n            <msisdn>61478038915</msisdn>\n            <response>I there, this is a sample response</response>\n            <longcode>61429625067</longcode>\n        </item>\n        <item>\n            <id>36283700</id>\n            <message_id>338808275</message_id>\n            <list_id>4070947</list_id>\n            <received_at>2020-06-15 01:15:49</received_at>\n            <first_name/>\n            <last_name/>\n            <msisdn>61478038915</msisdn>\n            <response>Received response</response>\n            <longcode>61436446702</longcode>\n        </item>\n        <item>\n            <id>36230542</id>\n            <message_id>338116740</message_id>\n            <list_id>4070947</list_id>\n            <received_at>2020-06-12 00:06:10</received_at>\n            <first_name/>\n            <last_name/>\n            <msisdn>61478038915</msisdn>\n            <response>Testing email sms</response>\n            <longcode>61429238797</longcode>\n        </item>\n    </responses>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"e5a02559-ed00-4c47-bd4c-b2734fb272a9","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"https://api.transmitsms.com/get-user-sms-responses.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:16:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"total\": 4,\n    \"responses\": [\n        {\n            \"id\": 36573149,\n            \"message_id\": 339814842,\n            \"list_id\": 4070947,\n            \"received_at\": \"2020-06-23 10:03:44\",\n            \"first_name\": null,\n            \"last_name\": null,\n            \"msisdn\": 61478038915,\n            \"response\": \"Hi There, this is a sample response\",\n            \"longcode\": 61429720235\n        },\n        {\n            \"id\": 36573132,\n            \"message_id\": 340267059,\n            \"list_id\": 4070887,\n            \"received_at\": \"2020-06-23 10:03:05\",\n            \"first_name\": \"Ella\",\n            \"last_name\": \"B\",\n            \"msisdn\": 61478038915,\n            \"response\": \"I there, this is a sample response\",\n            \"longcode\": 61429625067\n        },\n        {\n            \"id\": 36283700,\n            \"message_id\": 338808275,\n            \"list_id\": 4070947,\n            \"received_at\": \"2020-06-15 01:15:49\",\n            \"first_name\": null,\n            \"last_name\": null,\n            \"msisdn\": 61478038915,\n            \"response\": \"Received response\",\n            \"longcode\": 61436446702\n        },\n        {\n            \"id\": 36230542,\n            \"message_id\": 338116740,\n            \"list_id\": 4070947,\n            \"received_at\": \"2020-06-12 00:06:10\",\n            \"first_name\": null,\n            \"last_name\": null,\n            \"msisdn\": 61478038915,\n            \"response\": \"Testing email sms\",\n            \"longcode\": 61429238797\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"b895f97a-6dfe-4006-ba3e-f5d4082eaa35"}],"id":"c23b71c1-a9b6-41c5-90cf-fca41f964f38","description":"<p>The primary method of sending SMS</p>\n","event":[{"listen":"prerequest","script":{"id":"900025b7-b9d5-4ce7-a5a6-9b74a8e6fc69","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aee61dde-59b4-4ec1-8396-93dac6e86e07","type":"text/javascript","exec":[""]}}],"_postman_id":"c23b71c1-a9b6-41c5-90cf-fca41f964f38"},{"name":"Reporting","item":[{"name":"Get Message/Campaign Information","id":"b4d6af58-03d0-467f-af0c-76fd66593178","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/get-sms.json","description":"<h1 id=\"get-sms\">Get SMS</h1>\n<p>This will return information about the campaign, including the message, list etc. It will not however return individual messages with populated variables or tracking links. To retrieve final individual messages use <strong>get-sms-delivery-status.</strong></p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>message_id</strong></td><td>integer</td><td><p><strong>Numeric ID assigned to the message sent. </strong></p><p>This ID was returned in the <a href=\"https://developer.transmitsms.com/?version=latest#74911cf8-dec6-4319-a499-7f535a7fd08c\">send-sms</a> response</p></td><td>YES<br /></td></tr></tbody></table>\n\n<h2 id=\"responses\">Responses</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>message_id</strong></td><td><p><strong>Numeric ID assigned to the message that was sent</strong></p></td></tr><tr><td><strong>send_at</strong></td><td><strong>Date and time that message was sent from your account</strong><br />Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</td></tr><tr><td><strong>recipients</strong></td><td><p><strong>Number of recipients message was sent to</strong></p></td></tr><tr><td><strong>cost</strong></td><td><p><strong>Total cost of all messages</strong></p><p>Returned as value per account currency to 3 decimal places 0.000</p></td></tr><tr><td><strong>sms</strong><br /></td><td><p><strong>Total number of message parts delivered</strong></p><p>If the message is longer than 160 characters this will return count of all parts. Eg. if a 180 character message is delivered to 2 recipients. Value returned will be 4.</p></td></tr><tr><td><strong>message</strong></td><td><strong>Content of message sent</strong><br /></td></tr><tr><td><strong>list</strong></td><td><strong>ID and name of list delivered to</strong></td></tr><tr><td><strong>delivery_stats</strong></td><td><strong>Report of messages delivered</strong><br />Count of different reporting stats we collect. Delivery reports are marked using a DLR (Delivery Receipt) or Acknowledgement (ACK) returned from the carrier, a DLR is a handset level report and an ACK is simply a response from the carrier that the request was received. Global carriers have different functionality available. See our <a href=\"https://support.transmitsms.com/support/solutions/articles/44001940675-global-sms-delivery-list\">Global Delivery List</a> for details.<br /><br /><table><thead><tr><th>STATS</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>delivered</strong></td><td>Messages delivered<br /></td></tr><tr><td><strong>pending</strong></td><td>No delivery report received from carrier. Allow upto 72hrs or use validity in <a href=\"https://developer.transmitsms.com/?version=latest#74911cf8-dec6-4319-a499-7f535a7fd08c\">send-sms</a> call to process.</td></tr><tr><td><strong>bounced</strong></td><td>Handset was disconnected, <strong>hard-bounce</strong>, or message was undeliverable due to handset switched off, out of range or other temporary deliverability issue, <strong>soft-bounce</strong>. For a specific bounced status us get-sms-sent</td></tr><tr><td><strong>responses</strong></td><td>Replies received<br /></td></tr><tr><td><strong>optouts</strong></td><td>Recipients opted out, either by reply or unsub link.<br /></td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-sms.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"bdeea1f5-10c9-45fd-924e-0b498b9628f3","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"}]},"url":"https://api.transmitsms.com/get-sms.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:35:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"message_id\": 339814842,\n    \"send_at\": \"2020-06-18 11:17:44\",\n    \"recipients\": 1,\n    \"cost\": 0.087,\n    \"sms\": 1,\n    \"message\": \"This is my message, click on my link [tracked-link]\",\n    \"delivery_stats\": {\n        \"delivered\": 1,\n        \"pending\": 0,\n        \"bounced\": 0,\n        \"responses\": 1,\n        \"optouts\": 0\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"d51aa84d-11b7-4baf-be8b-75f4b2ef4d88","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"}]},"url":"https://api.transmitsms.com/get-sms.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:36:00 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <message_id>339814842</message_id>\n    <send_at>2020-06-18 11:17:44</send_at>\n    <recipients>1</recipients>\n    <cost>0.087</cost>\n    <sms>1</sms>\n    <message>This is my message, click on my link [tracked-link]</message>\n    <delivery_stats>\n        <delivered>1</delivered>\n        <pending>0</pending>\n        <bounced>0</bounced>\n        <responses>1</responses>\n        <optouts>0</optouts>\n    </delivery_stats>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"b4d6af58-03d0-467f-af0c-76fd66593178"},{"name":"Get SMS Delivery Status","id":"e828aec8-482d-4880-9ce2-07fc62bf618b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/get-sms-delivery-status.json","description":"<h2 id=\"get-detailed-information-specific-to-a-recipient\">Get detailed information specific to a recipient</h2>\n<p>Retrieves detailed information about messages sent to a specific recipient. This included full message content including populated variables.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>message_id</strong></td><td>integer</td><td><p><strong>Numeric ID assigned to the message sent. </strong></p><p>This ID was returned in the <a href=\"https://developer.transmitsms.com/?version=latest#74911cf8-dec6-4319-a499-7f535a7fd08c\">send-sms</a> response</p></td><td>YES<br /></td></tr><tr><td><strong>msisdn</strong></td><td>integer</td><td><strong>Mobile number of recipient</strong></td><td>YES</td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>message_id</strong></td><td><p><strong>Numeric ID assigned to the message that was sent</strong></p></td></tr><tr><td><strong>sender_id</strong></td><td><strong>Sender ID that message was sent from</strong><br /></td></tr><tr><td><strong>mobile</strong></td><td><p><strong>Mobile number of recipient</strong></p></td></tr><tr><td><strong>send_at</strong></td><td><p><strong>Date and time that message was sent from your account</strong></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></td></tr><tr><td><strong>datetime</strong><br /></td><td><p><strong>Date and time that message was delivered</strong></p><p>This is the date returned in the DLR in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></td></tr><tr><td><strong>message</strong></td><td><strong>Content of message sent</strong><br />Includes populated variables<br /></td></tr><tr><td><strong>status</strong></td><td><strong>Report of message status</strong><br />Delivery reports are marked using a DLR (Delivery Receipt) or Acknowledgement (ACK) returned from the carrier, a DLR is a handset level report and an ACK is simply a response from the carrier that the request was received. Global carriers have different functionality available. See our <a href=\"https://developer.transmitsms.com/en/support/solutions/articles/44001940675\">Global Delivery List</a> for details.<br /><br /><table><thead><tr><th>STATS</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>delivered</strong></td><td>Messages delivered<br /></td></tr><tr><td><strong>failed</strong></td><td>Message bounced. For detailed bounce report use <strong><a href=\"https://developer.transmitsms.com/?version=latest#66eab307-28a4-4d6b-8fc5-99e578f48f70\">get-sms-sent</a></strong></td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-sms-delivery-status.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"5d0fb13b-c8eb-4a8f-ae15-e841f15ffcbd","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"},{"key":"msisdn","value":"61478038915","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-delivery-status.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:50:40 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <stats>\n        <message_id>339814842</message_id>\n        <sender_id>61429720235</sender_id>\n        <mobile>61478038915</mobile>\n        <send_at>2020-06-18 11:17:44</send_at>\n        <datetime>2020-06-18 11:17:00</datetime>\n        <status>delivered</status>\n        <message>This is my message, click on my link TapTh.is/hO2HL7b0</message>\n    </stats>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"abcb4a4d-5038-4816-b36e-fbbf4789b64b","name":"Example 1 ","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"},{"key":"msisdn","value":"61478038915","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-delivery-status.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:48:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"stats\": {\n        \"message_id\": 339814842,\n        \"sender_id\": 61429720235,\n        \"mobile\": 61478038915,\n        \"send_at\": \"2020-06-18 11:17:44\",\n        \"datetime\": \"2020-06-18 11:17:00\",\n        \"status\": \"delivered\",\n        \"message\": \"This is my message, click on my link TapTh.is/hO2HL7b0\"\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"e828aec8-482d-4880-9ce2-07fc62bf618b"},{"name":"Get SMS Sent Count","id":"8eb57aaf-ea27-4227-963e-2f0d33d31e8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://api.transmitsms.com/get-sms-sent-count.json","description":"<p>Retrieves total number of SMS sent in a given timeframe</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>start</strong></td><td>datetime</td><td><p><strong>A date to start the report from </strong><br />Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p>\n<p>start and end date must be within 7 days</p>\n<p>If start and end date not supplied will get everything from last 24 hrs only.</p></td><td>NO</td></tr><tr><td><strong>end</strong></td><td>datetime</td><td><p><strong>A date  to end the report at <br /></strong>Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p>\n<p>start and end date must be within 7 days</p>\n<p>If start and end date not supplied will get everything from last 24 hrs only.</p></td><td>NO</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-sms-sent-count.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"63d5c6d2-4b7e-416d-9b56-1bee04743943","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"start","value":"2020-07-23","type":"text"},{"key":"end","value":"2020-07-30","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-sent-count.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 31 Jul 2020 03:54:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 6,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"6c068512-cb23-432a-9e4a-07af5d9c8cd2","name":"Example 2","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.transmitsms.com/get-sms-sent-count.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 31 Jul 2020 03:56:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 2,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"8eb57aaf-ea27-4227-963e-2f0d33d31e8b"},{"name":"Get Activity Report","id":"e1cde9dd-53c0-48b1-a587-70ee0e290e71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://api.transmitsms.com/get-user-sms-sent.json","description":"<p>Retrieve information on messages sent during a period of time</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>start</strong></td><td>datetime</td><td><p><strong>A date to start the report from </strong><br />Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p></td><td>YES</td></tr><tr><td><strong>end</strong></td><td>datetime</td><td><p><strong>A date  to end the report at <br /></strong>Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p></td><td>YES</td></tr><tr><td><strong>msisdn</strong></td><td>integer</td><td><strong>Mobile number of contact being queried</strong></td><td>NO</td></tr><tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td>NO</td></tr><tr><td><strong>max</strong></td><td>integer</td><td><strong>Maximum results returned per page</strong></td><td>NO</td></tr><tr><td><strong>response_style</strong></td><td>string</td><td><strong>response_style = 'array'</strong> returns custom field lists as an array</td><td>NO</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-user-sms-sent.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"5871cd3f-66b1-46a0-9a18-3833aed4cbf1","name":"Example 2","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.transmitsms.com/get-user-sms-sent.json?start=2020-10-08&end=2020-10-10&msisdn=61478038915&response_style=array&page=1&max=100","protocol":"https","host":["api","transmitsms","com"],"path":["get-user-sms-sent.json"],"query":[{"key":"start","value":"2020-10-08"},{"key":"type","value":"keyword","disabled":true},{"key":"end","value":"2020-10-10"},{"key":"list_id","value":"1022871","disabled":true},{"key":"msisdn","value":"61478038915"},{"key":"response_style","value":"array"},{"key":"page","value":"1"},{"key":"max","value":"100"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Oct 2020 00:51:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"total\": 3,\n    \"messages\": [\n        {\n            \"id\": 937885838,\n            \"message_id\": 373181398,\n            \"message\": \"Hi there\\n\\nThis is a test message\\n\\nHave a great day\\n\\nOpt-out reply STOP\",\n            \"sent_at\": \"2020-10-09 00:49:21\",\n            \"msisdn\": 61478038915,\n            \"caller_id\": 61438123456,\n            \"status\": \"delivered\"\n        },\n        {\n            \"id\": 937885264,\n            \"message_id\": 373180891,\n            \"message\": \"Hello SMS\",\n            \"sent_at\": \"2020-10-09 00:48:18\",\n            \"msisdn\": 61478038915,\n            \"caller_id\": 61428330912,\n            \"status\": \"delivered\"\n        },\n        {\n            \"id\": 937884682,\n            \"message_id\": 373180707,\n            \"message\": \"This is a test message\\nOpt-out reply STOP\",\n            \"sent_at\": \"2020-10-09 00:47:55\",\n            \"msisdn\": 61478038915,\n            \"caller_id\": 61438123456,\n            \"status\": \"delivered\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"ceb90ecc-ceec-420e-8dc4-8739c2786bd3","name":"Example 1","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.transmitsms.com/get-user-sms-sent.json?start=2020-10-08&end=2020-10-10&response_style=array&page=1&max=100","protocol":"https","host":["api","transmitsms","com"],"path":["get-user-sms-sent.json"],"query":[{"key":"start","value":"2020-10-08"},{"key":"type","value":"keyword","disabled":true},{"key":"end","value":"2020-10-10"},{"key":"list_id","value":"1022871","disabled":true},{"key":"number","value":"61447785412","type":"text","disabled":true},{"key":"response_style","value":"array"},{"key":"page","value":"1"},{"key":"max","value":"100"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Oct 2020 00:49:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"total\": 3,\n    \"messages\": [\n        {\n            \"id\": 937885838,\n            \"message_id\": 373181398,\n            \"message\": \"Hi there\\n\\nThis is a test message\\n\\nHave a great day\\n\\nOpt-out reply STOP\",\n            \"sent_at\": \"2020-10-09 00:49:21\",\n            \"msisdn\": 61478038915,\n            \"caller_id\": 61438123456,\n            \"status\": \"delivered\"\n        },\n        {\n            \"id\": 937885264,\n            \"message_id\": 373180891,\n            \"message\": \"Hello SMS\",\n            \"sent_at\": \"2020-10-09 00:48:18\",\n            \"msisdn\": 61478038915,\n            \"caller_id\": 61428330912,\n            \"status\": \"delivered\"\n        },\n        {\n            \"id\": 937884682,\n            \"message_id\": 373180707,\n            \"message\": \"This is a test message\\nOpt-out reply STOP\",\n            \"sent_at\": \"2020-10-09 00:47:55\",\n            \"msisdn\": 61478038915,\n            \"caller_id\": 61438123456,\n            \"status\": \"delivered\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"e1cde9dd-53c0-48b1-a587-70ee0e290e71"},{"name":"Get SMS Sent to Account","id":"fcbf5da6-ee86-40bd-a1cd-1a5de81fa1d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.transmitsms.com/get-contact-sms-stats.json","description":"<p>This will return paginated information regarding individual messages sent to provided mobile number.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>mobile</strong></td><td>integer</td><td><p><strong>The mobile number of the recipient </strong></p><p>Number must be defined in E.164 international format. You can use countrycode parameter to format numbers that are in local format.</p></td><td>YES<br /></td></tr><tr><td><strong>countrycode</strong></td><td>string</td><td><p><strong>Format the to number in international format. </strong></p><p>2 letter ISO 3166 format country code or country name. Automatically formats numbers to international format required for reliable SMS delivery. eg. In Australia 0422222222 will become 6142222222 when set to AU or Australia. If not set to numbers must be defined in E.164 international format.<br /><br /></p><table><thead><tr><th>COUNTRY</th><th>COUNTRY CODE</th><th>LOCAL</th><th>INTERNATIONAL</th></tr></thead><tbody><tr><td>Australia</td><td>au</td><td>0491570156</td><td>61491570156</td></tr><tr><td>New Zealand</td><td>nz</td><td>0212670129</td><td>64212670129</td></tr><tr><td>United Kingdom</td><td>gb</td><td>0750017696</td><td>44750017696</td></tr><tr><td>United States</td><td>us</td><td>2513551145</td><td>12513551145</td></tr></tbody></table></td><td>NO</td></tr><tr><td><strong>start</strong></td><td>datetime</td><td><p>Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p><p>If start and end date not supplied, will get everything from the account registration to current date.</p></td><td>NO</td></tr><tr><td><strong>end</strong></td><td>datetime</td><td><p>Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p><p>If start and end date not supplied, will get everything from the account registration to current date.</p></td><td>NO</td></tr>\n\n<tr><td><strong>sort_field</strong></td><td>string</td><td>Sort by <br />- delivery_status <br />- message_id<br />- datetime_send</td><td>NO</td></tr>\n<tr><td><strong>order</strong></td><td>string</td><td>Order by <br />- asc <br />- desc</td><td>NO</td></tr>\n<tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td>NO</td></tr>\n<tr><td><strong>max</strong></td><td>integer</td><td><strong>Maximum results returned per page</strong></td><td>NO</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-contact-sms-stats.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"1163074f-7acd-47ce-9bce-b4e38e41bfe7","name":"Example 2","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.transmitsms.com/get-contact-sms-stats.json?mobile=61478038915&start=2020-05-14&end=2020-05-15","protocol":"https","host":["api","transmitsms","com"],"path":["get-contact-sms-stats.json"],"query":[{"key":"mobile","value":"61478038915"},{"key":"start","value":"2020-05-14"},{"key":"end","value":"2020-05-15"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Sep 2020 08:40:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"total\": 1,\n    \"records\": [\n        {\n            \"message_id\": 331201546,\n            \"datetime_send\": \"2020-05-14 14:33:25\",\n            \"delivery_status\": \"delivered\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"622818b9-2669-4f97-9f8a-de5545426f8a","name":"Example 3","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.transmitsms.com/get-contact-sms-stats.json?mobile=61478038915&start=2020-05-14&end=2020-05-25","protocol":"https","host":["api","transmitsms","com"],"path":["get-contact-sms-stats.json"],"query":[{"key":"mobile","value":"61478038915"},{"key":"start","value":"2020-05-14"},{"key":"end","value":"2020-05-25"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Sep 2020 08:43:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 2,\n        \"number\": 1\n    },\n    \"total\": 19,\n    \"records\": [\n        {\n            \"message_id\": 331201546,\n            \"datetime_send\": \"2020-05-14 14:33:25\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332010765,\n            \"datetime_send\": \"2020-05-18 20:58:56\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332013360,\n            \"datetime_send\": \"2020-05-18 21:18:46\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332014798,\n            \"datetime_send\": \"2020-05-18 21:29:47\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332015344,\n            \"datetime_send\": \"2020-05-18 21:32:40\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332015379,\n            \"datetime_send\": \"2020-05-18 21:33:08\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332015395,\n            \"datetime_send\": \"2020-05-18 21:33:20\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332015893,\n            \"datetime_send\": \"2020-05-18 21:39:24\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332016596,\n            \"datetime_send\": \"2020-05-18 21:54:48\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332018705,\n            \"datetime_send\": \"2020-05-18 22:44:17\",\n            \"delivery_status\": \"delivered\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"cfeace8c-7b02-4244-a59b-773333e41150","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.transmitsms.com/get-contact-sms-stats.json?mobile=478038915&countrycode=AU","protocol":"https","host":["api","transmitsms","com"],"path":["get-contact-sms-stats.json"],"query":[{"key":"mobile","value":"478038915"},{"key":"countrycode","value":"AU"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Sep 2020 08:39:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 7,\n        \"number\": 1\n    },\n    \"total\": 61,\n    \"records\": [\n        {\n            \"message_id\": 331201546,\n            \"datetime_send\": \"2020-05-14 14:33:25\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332010765,\n            \"datetime_send\": \"2020-05-18 20:58:56\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332013360,\n            \"datetime_send\": \"2020-05-18 21:18:46\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332014798,\n            \"datetime_send\": \"2020-05-18 21:29:47\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332015344,\n            \"datetime_send\": \"2020-05-18 21:32:40\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332015379,\n            \"datetime_send\": \"2020-05-18 21:33:08\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332015395,\n            \"datetime_send\": \"2020-05-18 21:33:20\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332015893,\n            \"datetime_send\": \"2020-05-18 21:39:24\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332016596,\n            \"datetime_send\": \"2020-05-18 21:54:48\",\n            \"delivery_status\": \"delivered\"\n        },\n        {\n            \"message_id\": 332018705,\n            \"datetime_send\": \"2020-05-18 22:44:17\",\n            \"delivery_status\": \"delivered\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"fcbf5da6-ee86-40bd-a1cd-1a5de81fa1d4"},{"name":"Get Message/Campaign Report","id":"0bccb8df-2a87-4723-a338-3739e888193d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.transmitsms.com/get-sms-stats.json","description":"<h1 id=\"delivery-status\">Delivery Status</h1>\n<h2 id=\"get-the-delivery-status-of-a-message-or-campaign-that-you-have-sent\">Get the delivery status of a message or campaign that you have sent.</h2>\n<p>Count of different reporting stats we collect. Delivery reports are marked using a DLR (Delivery Receipt) or Acknowledgement (ACK) returned from the carrier, a DLR is a handset level report and an ACK is simply a response from the carrier that the request was received. Global carriers have different functionality available. See our Global Delivery List for details.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>message_id</strong></td><td>integer</td><td><p><strong>Numeric ID assigned to the message sent. </strong></p><p>This ID was returned in the <a href=\"https://developer.transmitsms.com/?version=latest#74911cf8-dec6-4319-a499-7f535a7fd08c\">send-sms</a> response</p></td><td>YES<br /></td></tr></tbody></table>\n\n<h2 id=\"responses\">Responses</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>hard_bounced</strong></td><td><p><strong>Handset was disconnected</strong></p></td></tr><tr><td><strong>soft_bounced</strong></td><td><strong>Message was undeliverable </strong><br />Handset switched off, out of range or other temporary deliverability issue.<br /></td></tr><tr><td><strong>total</strong></td><td><p><strong>Number of messages sent</strong></p></td></tr><tr><td><strong>recipientCount</strong></td><td><p><strong>Number of recipients message was sent to</strong></p></td></tr><tr><td><strong>delivered</strong><br /></td><td><p><strong>Messages delivered</strong></p></td></tr><tr><td><strong>pending</strong></td><td><strong>No delivery report received from carrier. </strong><br />Allow upto 72hrs or use validity in send-sms call to process.<br /></td></tr><tr><td><strong>bounced</strong></td><td><strong>Total number of soft and hard bounces recorded</strong><br /></td></tr><tr><td><strong>responses</strong></td><td><strong>Replies received</strong><br /></td></tr><tr><td><strong>opt-outs</strong></td><td><strong>Recipients opted out</strong><br />Either by reply or unsub link.<br /></td></tr><tr><td><strong>link_hits</strong></td><td><strong>Number of link hits recorded</strong><br /></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-sms-stats.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"0b700764-63a3-4148-a097-b06d454d5e3f","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-stats.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:58:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"stats\": {\n        \"hard_bounced\": 0,\n        \"soft_bounced\": 0,\n        \"total\": 1,\n        \"recipientCount\": 1,\n        \"delivered\": 1,\n        \"pending\": 0,\n        \"bounced\": 0,\n        \"responses\": 1,\n        \"opt-outs\": 0,\n        \"link_hits\": 0\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"5c144027-ac37-46e5-8329-a1b934c88a0d","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-stats.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 23 Jun 2020 10:59:22 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <stats>\n        <hard_bounced>0</hard_bounced>\n        <soft_bounced>0</soft_bounced>\n        <total>1</total>\n        <recipientCount>1</recipientCount>\n        <delivered>1</delivered>\n        <pending>0</pending>\n        <bounced>0</bounced>\n        <responses>1</responses>\n        <opt-outs>0</opt-outs>\n        <link_hits>0</link_hits>\n    </stats>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"0bccb8df-2a87-4723-a338-3739e888193d"},{"name":"Get Message/Campaign Recipients","id":"66eab307-28a4-4d6b-8fc5-99e578f48f70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/get-sms-sent.json","description":"<h2 id=\"get-information-about-a-message-send-and-its-recipients\">Get information about a message send and it's recipients</h2>\n<p>This will return paginated information regarding individual recipients on a campaign or message send.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>message_id</strong></td><td>integer</td><td><p><strong>Numeric ID assigned to the message sent. </strong></p><p>This ID was returned in the <a href=\"https://developer.transmitsms.com/?version=latest#74911cf8-dec6-4319-a499-7f535a7fd08c\">send-sms</a> response</p></td><td>YES<br /></td></tr><tr></tr><tr><td><strong>list_id</strong></td><td>integer</td><td><p><strong>Recipient list </strong></p><p>This ID is the numerical reference to one of your recipient lists. It is found in the URL and displayed on a destination list page in your account.</p><p>Provide list_id if contact is not associated with a campaign send. It will look up custom data on this list for the contact and return it in the response.</p></td><td>NO<br /></td></tr><tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td>NO</td></tr><tr><td><strong>max</strong></td><td>integer</td><td><strong>Maximum results returned per page</strong></td><td>NO</td></tr><tr><td><strong>delivery</strong></td><td>boolean</td><td><strong>Only show messages with specific delivery status.</strong><br /><br /><table><thead><tr><th>VALUE</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>delivered</strong></td><td>Only return delivered messages<br /></td></tr><tr><td><strong>failed</strong></td><td>Only return failed messages<br /></td></tr><tr><td><strong>pending</strong></td><td>Only return pending messages<br /></td></tr></tbody></table><br /></td><td>NO</td></tr><tr><td><strong>optouts</strong></td><td>boolean</td><td><strong>Whether to include opt outs</strong><br /><br /><table><thead><tr><th>VALUE</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>only</strong></td><td>Only return opt outs</td></tr><tr><td><strong>omit</strong></td><td>Do not include opt outs</td></tr></tbody></table><br /></td><td><br /></td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>message</strong></td><td><p><strong>Information about a message or campaign that you have sent</strong></p><table><tbody><tr><td><strong>message_id</strong></td><td><p><strong>Numeric ID assigned to the message that was sent</strong></p></td></tr><tr><td><strong>send_at</strong></td><td><strong>Date and time that message was sent from your account</strong><br />Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</td></tr><tr><td><strong>recipients</strong></td><td><p><strong>Number of recipients message was sent to</strong></p></td></tr><tr><td><strong>cost</strong></td><td><p><strong>Total cost of all messages</strong></p><p>Returned as value per account currency to 3 decimal places 0.000</p></td></tr><tr><td><strong>sms</strong><br /></td><td><p><strong>Total number of message parts delivered</strong></p><p>If the message is longer than 160 characters this will return count of all parts. Eg. if a 180 character message is delivered to 2 recipients. Value returned will be 4.</p></td></tr><tr><td><strong>message</strong></td><td><strong>Content of message sent</strong><br /></td></tr><tr><td><strong>list</strong></td><td><strong>ID and name of list delivered to</strong></td></tr><tr><td><strong>delivery_stats</strong></td><td><strong>Report of messages delivered</strong><br />Count of different reporting stats we collect. Delivery reports are marked using a DLR (Delivery Receipt) or Acknowledgement (ACK) returned from the carrier, a DLR is a handset level report and an ACK is simply a response from the carrier that the request was received. Global carriers have different functionality available. See our <a href=\"https://developer.transmitsms.com/en/support/solutions/articles/44001940675\">Global Delivery List</a> for details.<br /><br /><table><tbody><tr><td><strong>delivered</strong></td><td>Messages delivered<br /></td></tr><tr><td><strong>pending</strong></td><td>No delivery report received from carrier. Allow upto 72hrs or use validity in <a href=\"https://developer.transmitsms.com/en/support/solutions/articles/44001947656\">send-sms</a> call to process.</td></tr><tr><td><strong>bounced</strong></td><td>Handset was disconnected, <strong>hard-bounce</strong>, or message was undeliverable due to handset switched off, out of range or other temporary deliverability issue, <strong>soft-bounce</strong>. For a specific bounced status use <strong><a href=\"#76b2511d-d178-499e-aeb0-7fe881a690bb\">get-sms-sent</a></strong></td></tr><tr><td><strong>responses</strong></td><td>Replies received<br /></td></tr><tr><td><strong>optouts</strong></td><td>Recipients opted out, either by reply or unsub link.<br /></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td><strong>recipients</strong></td><td><strong>A paginated report of all the recipients delivered to in your message/campaign</strong><br /><br /><table><tbody><tr><td><strong>msisdn</strong></td><td>The mobile number of the recipient</td></tr><tr><td><strong>first_name</strong></td><td>First name of recipient as stored in contacts</td></tr><tr><td><strong>last_name</strong></td><td>Last name of recipient as stored in contacts</td></tr><tr><td><strong>delivery_status</strong></td><td><table><tbody><tr><td><strong>delivered</strong></td><td>Message delivered to handset</td></tr><tr><td><strong>pending</strong></td><td>No delivery report received from carrier. Allow upto 72hrs or use validity in <a href=\"https://developer.transmitsms.com/en/support/solutions/articles/44001947656\">send-sms</a> call to process.<br /></td></tr><tr><td><strong>bounced</strong></td><td>Handset was disconnected, <strong>hard-bounce</strong>, or message was undeliverable due to handset switched off, out of range or other temporary deliverability issue, <strong>soft-bounce</strong>.<br /></td></tr><tr><td><strong>responses</strong></td><td>Count of times recipient replied to this message.<br /></td></tr></tbody></table><br /></td></tr><tr><td><strong>optout</strong></td><td><strong>Set to true if recipient opted out.</strong><br /></td></tr></tbody></table><br /></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-sms-sent.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"2797be35-962c-4ce6-b4cd-ff6263a1b63f","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-sent.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 23 Jun 2020 11:11:12 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <page>\n        <count>1</count>\n        <number>1</number>\n    </page>\n    <total>1</total>\n    <message>\n        <message_id>339814842</message_id>\n        <send_at>2020-06-18 11:17:44</send_at>\n        <recipients>1</recipients>\n        <cost>0.087</cost>\n        <sms>1</sms>\n        <delivery_stats>\n            <delivered>1</delivered>\n            <pending>0</pending>\n            <bounced>0</bounced>\n            <responses>1</responses>\n            <optouts>0</optouts>\n        </delivery_stats>\n    </message>\n    <recipients>\n        <item>\n            <msisdn>61478038915</msisdn>\n            <first_name/>\n            <last_name/>\n            <delivery_status>delivered</delivery_status>\n            <optout>false</optout>\n        </item>\n    </recipients>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"733d7c20-e902-4486-9b06-74791f17ee46","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message_id","value":"339814842","type":"text"}]},"url":"https://api.transmitsms.com/get-sms-sent.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jun 2020 11:10:21 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"total\": 1,\n    \"message\": {\n        \"message_id\": 339814842,\n        \"send_at\": \"2020-06-18 11:17:44\",\n        \"recipients\": 1,\n        \"cost\": 0.087,\n        \"sms\": 1,\n        \"delivery_stats\": {\n            \"delivered\": 1,\n            \"pending\": 0,\n            \"bounced\": 0,\n            \"responses\": 1,\n            \"optouts\": 0\n        }\n    },\n    \"recipients\": [\n        {\n            \"msisdn\": 61478038915,\n            \"first_name\": null,\n            \"last_name\": null,\n            \"delivery_status\": \"delivered\",\n            \"optout\": false\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"66eab307-28a4-4d6b-8fc5-99e578f48f70"},{"name":"Get Message Report","id":"dc604ce1-a276-4dfb-8911-17672d925dcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://api.transmitsms.com/get-message-report.json","description":"<p>Retrieve information on messages sent during a period of time\nIt will also return all custom data fields associated to contacts in the list</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>start</strong></td><td>datetime</td><td><p><strong>A date to start the report from </strong><br />Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p>\n<p>start and end date must be within 30 days</p>\n<p>If start and end date not supplied will get everything from last 24 hrs only.</p></td><td>NO</td></tr><tr><td><strong>end</strong></td><td>datetime</td><td><p><strong>A date  to end the report at <br /></strong>Must be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00</p>\n<p>start and end date must be within 30 days</p>\n<p>If start and end date not supplied will get everything from last 24 hrs only.</p></td><td>NO</td></tr><tr><td><strong>list_id</strong></td><td>integer</td><td><p><strong>Recipient list </strong></p><p>Provide list_id to look up custom data on this list for the contact and return it in the response.</p></td><td>NO<br /></td></tr><tr><td><strong>number</strong><br /></td><td>integer</td><td><p>Virtual mobile number assigned to your account</p></td><td>NO</td></tr><tr><td><strong>type</strong><br /></td><td>integer</td><td>Message type, available options: <br /> - all<br /> - api<br /> - campaign<br />- quick_sms<br />- email_sms <br />- keyword <br />- test_sms\n<p></p></td><td>NO</td></tr><tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td>NO</td></tr><tr><td><strong>max</strong></td><td>integer</td><td><strong>Maximum results returned per page</strong></td><td>NO</td></tr><tr><td><strong>response_style</strong></td><td>string</td><td><strong>response_style = 'array'</strong> returns custom field lists as an array</td><td>NO</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-message-report.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"27184edd-0df4-47d9-a449-b9a2b5ffffa1","name":"Example 2","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.transmitsms.com/get-message-report.json?start=2020-09-24&type=all&end=2020-09-26&list_id=4280159","protocol":"https","host":["api","transmitsms","com"],"path":["get-message-report.json"],"query":[{"key":"start","value":"2020-09-24"},{"key":"type","value":"all"},{"key":"end","value":"2020-09-26"},{"key":"list_id","value":"4280159"},{"key":"number","type":"text","value":"61447785412","disabled":true},{"key":"response_style","value":"array","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Sep 2020 08:02:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"messages_total\": 2,\n    \"sms_total\": 2,\n    \"messages\": [\n        {\n            \"type\": \"campaign\",\n            \"id\": 368774873,\n            \"sms\": 1,\n            \"cost\": -0.087,\n            \"sent_at\": \"2020-09-25 07:45:08\",\n            \"status\": \"completed\",\n            \"message\": \"test keyword\\nOpt-out reply STOP\",\n            \"pending\": 0,\n            \"delivered\": 1,\n            \"soft_bounced\": 0,\n            \"hard_bounced\": 0,\n            \"optouts\": 0,\n            \"responses\": 1\n        },\n        {\n            \"type\": \"quick_sms\",\n            \"id\": 368772813,\n            \"sms\": 1,\n            \"cost\": -0.087,\n            \"sent_at\": \"2020-09-25 07:36:06\",\n            \"status\": \"completed\",\n            \"message\": \"test\",\n            \"pending\": 0,\n            \"delivered\": 1,\n            \"soft_bounced\": 0,\n            \"hard_bounced\": 0,\n            \"optouts\": 0,\n            \"responses\": 0,\n            \"msisdn\": 61478038915,\n            \"first_name\": \"Ella\",\n            \"last_name\": \"\",\n            \"fields\": {\n                \"City\": \"Sydney\",\n                \"Postcode\": 2000\n            }\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"a118d40a-60fd-449b-90d2-eef832a4893f","name":"Example 3","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.transmitsms.com/get-message-report.json?start=2020-09-24&type=campaign&end=2020-09-26&list_id=4280159&number=61447785412&response_style=array","protocol":"https","host":["api","transmitsms","com"],"path":["get-message-report.json"],"query":[{"key":"start","value":"2020-09-24"},{"key":"type","value":"campaign"},{"key":"end","value":"2020-09-26"},{"key":"list_id","value":"4280159"},{"key":"number","value":"61447785412"},{"key":"response_style","value":"array"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Sep 2020 08:03:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"messages_total\": 1,\n    \"sms_total\": 1,\n    \"messages\": [\n        {\n            \"type\": \"campaign\",\n            \"id\": 368774873,\n            \"sms\": 1,\n            \"cost\": -0.087,\n            \"sent_at\": \"2020-09-25 07:45:08\",\n            \"status\": \"completed\",\n            \"message\": \"test keyword\\nOpt-out reply STOP\",\n            \"pending\": 0,\n            \"delivered\": 1,\n            \"soft_bounced\": 0,\n            \"hard_bounced\": 0,\n            \"optouts\": 0,\n            \"responses\": 1\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"ac65e511-0d1c-4b72-a9f4-7c1c1320aad3","name":"Example 1","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.transmitsms.com/get-message-report.json?start=2020-09-24&type=all&end=2020-09-26","protocol":"https","host":["api","transmitsms","com"],"path":["get-message-report.json"],"query":[{"key":"start","value":"2020-09-24"},{"key":"type","value":"all"},{"key":"end","value":"2020-09-26"},{"key":"list_id","value":"1022871","disabled":true},{"key":"number","type":"text","value":"61447785412","disabled":true},{"key":"response_style","value":"array","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Sep 2020 08:01:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"messages_total\": 2,\n    \"sms_total\": 2,\n    \"messages\": [\n        {\n            \"type\": \"campaign\",\n            \"id\": 368774873,\n            \"sms\": 1,\n            \"cost\": -0.087,\n            \"sent_at\": \"2020-09-25 07:45:08\",\n            \"status\": \"completed\",\n            \"message\": \"test keyword\\nOpt-out reply STOP\",\n            \"pending\": 0,\n            \"delivered\": 1,\n            \"soft_bounced\": 0,\n            \"hard_bounced\": 0,\n            \"optouts\": 0,\n            \"responses\": 1\n        },\n        {\n            \"type\": \"quick_sms\",\n            \"id\": 368772813,\n            \"sms\": 1,\n            \"cost\": -0.087,\n            \"sent_at\": \"2020-09-25 07:36:06\",\n            \"status\": \"completed\",\n            \"message\": \"test\",\n            \"pending\": 0,\n            \"delivered\": 1,\n            \"soft_bounced\": 0,\n            \"hard_bounced\": 0,\n            \"optouts\": 0,\n            \"responses\": 0,\n            \"msisdn\": 61478038915\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"dc604ce1-a276-4dfb-8911-17672d925dcd"},{"name":"Get Information About A List","id":"7842f1e5-1f10-4139-91d7-c915e79eabf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/get-list.json","description":"<h2 id=\"get-detailed-information-about-a-list-return-custom-fields-and-its-contacts\">Get detailed information about a list, return custom fields and its contacts.</h2>\n<p>This will return paginated information regarding individual contacts on a list and their data.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>list_id</strong></td><td>integer</td><td><p><strong>Numeric ID assigned to the list being queried</strong></p><p>List ID's can be retrieved using <strong>get-lists</strong></p></td><td>YES<br /></td></tr><tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td>NO</td></tr><tr><td><strong>max</strong></td><td>integer</td><td><strong>Maximum results returned per page</strong></td><td>NO</td></tr><tr><td><strong>members</strong></td><td>boolean</td><td><strong>Only show contacts with specific status</strong><br />Returns all contacts if not specified.<br /><br /><table><thead><tr><th>VALUE</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>active</strong></td><td>Only return active contacts<br /></td></tr><tr><td><strong>inactive</strong></td><td>Only return deleted contacts<br /></td></tr><tr><td><strong>none</strong></td><td>Do not get contacts, just list metadata</td></tr></tbody></table></td><td>NO</td></tr><tr><td><strong>response_style</strong></td><td>string</td><td><strong>response_style = 'array'</strong> returns custom field lists as an array</td><td>NO</td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>members_total</strong></td><td><strong>Count of number of contacts on list</strong><br />This will include deleted contacts.</td></tr><tr><td><strong>id</strong></td><td><strong>Numeric ID of list<br /></strong></td></tr><tr><td><strong>name</strong></td><td><strong>Name of list</strong></td></tr><tr><td><strong>created</strong></td><td><strong>Date list was first created</strong></td></tr><tr><td><strong>members_active</strong></td><td><strong>Count of active contacts on list</strong></td></tr><tr><td><strong>fields</strong></td><td><strong>Custom field name </strong><p>List of custom field names by <strong>field_n</strong> where n = is an integer between 1 and 10.</p></td></tr><tr><td><strong>members</strong></td><td><p><strong>Information about contacts on the list</strong></p><table><tbody><tr><td><strong>list_id</strong></td><td><p><strong>Numeric ID of the list contact is on</strong></p></td></tr><tr><td><strong>msisdn</strong></td><td><strong>Mobile number of contact</strong></td></tr><tr><td><strong>first_name</strong></td><td><p><strong>First name of contact</strong></p></td></tr><tr><td><strong>last_name</strong></td><td><p><strong>Last name of contact</strong></p></td></tr><tr><td><strong>created_at</strong><br /></td><td><p><strong>Date and time that contact was first added to list</strong></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></td></tr><tr><td><strong>status</strong><br /></td><td><strong>Status of contact</strong><br /><br /><table><tbody><tr><td><strong>active</strong></td><td>Contact is active<br /></td></tr><tr><td><strong>inactive</strong></td><td>Contact is inactive</td></tr></tbody></table></td></tr><tr><td><strong>fields</strong></td><td><strong>Custom field value</strong><p>List of custom field values by <strong>field name.</strong> </p></td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-list.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"5509d1ec-1162-4c77-8c3a-1df751f6f887","name":"Example 3","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213644","type":"text"},{"key":"response_style","value":"array","type":"text"}]},"url":"https://api.transmitsms.com/get-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Jun 2020 09:32:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"members_total\": 2,\n    \"id\": 4213644,\n    \"name\": \"Customer List\",\n    \"created\": \"2020-06-24 05:25:48\",\n    \"members_active\": 0,\n    \"fields\": [\n        {\n            \"name\": \"field_1\",\n            \"value\": \"Email\"\n        },\n        {\n            \"name\": \"field_2\",\n            \"value\": \"Postcode\"\n        },\n        {\n            \"name\": \"field_3\",\n            \"value\": \"ID\"\n        },\n        {\n            \"name\": \"field_4\",\n            \"value\": \"Handset\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"79b4bd81-cd9e-4e89-936b-fea0f4ee94da","name":"Example 2","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4070887","type":"text"},{"key":"members","value":"active","type":"text"}]},"url":"https://api.transmitsms.com/get-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Jun 2020 23:24:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"members_total\": 5,\n    \"id\": 4070887,\n    \"name\": \"My Test List\",\n    \"created\": \"2020-05-14 03:42:31\",\n    \"members_active\": 3,\n    \"fields\": [],\n    \"members\": [\n        {\n            \"list_id\": 4070887,\n            \"msisdn\": 61429625067,\n            \"first_name\": \"Ella\",\n            \"last_name\": \"B\",\n            \"created_at\": \"2020-06-23 23:23:01\",\n            \"status\": \"active\"\n        },\n        {\n            \"list_id\": 4070887,\n            \"msisdn\": 61429703715,\n            \"first_name\": \"Brad\",\n            \"last_name\": \"Down\",\n            \"created_at\": \"2020-06-23 23:23:33\",\n            \"status\": \"active\"\n        },\n        {\n            \"list_id\": 4070887,\n            \"msisdn\": 61429720235,\n            \"first_name\": \"Paul\",\n            \"last_name\": \"Krajewski\",\n            \"created_at\": \"2020-06-23 23:21:54\",\n            \"status\": \"active\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"e1eb161a-e9ba-4de9-a814-8dace26f810c","name":"Example 1","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4070887","type":"text"},{"key":"members","value":"active","type":"text"}]},"url":"https://api.transmitsms.com/get-list.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 23 Jun 2020 23:23:55 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <page>\n        <count>1</count>\n        <number>1</number>\n    </page>\n    <members_total>5</members_total>\n    <id>4070887</id>\n    <name>My Test List</name>\n    <created>2020-05-14 03:42:31</created>\n    <members_active>3</members_active>\n    <fields/>\n    <members>\n        <item>\n            <list_id>4070887</list_id>\n            <msisdn>61429625067</msisdn>\n            <first_name>Ella</first_name>\n            <last_name>B</last_name>\n            <created_at>2020-06-23 23:23:01</created_at>\n            <status>active</status>\n        </item>\n        <item>\n            <list_id>4070887</list_id>\n            <msisdn>61429703715</msisdn>\n            <first_name>Brad</first_name>\n            <last_name>Down</last_name>\n            <created_at>2020-06-23 23:23:33</created_at>\n            <status>active</status>\n        </item>\n        <item>\n            <list_id>4070887</list_id>\n            <msisdn>61429720235</msisdn>\n            <first_name>Paul</first_name>\n            <last_name>Krajewski</last_name>\n            <created_at>2020-06-23 23:21:54</created_at>\n            <status>active</status>\n        </item>\n    </members>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"7842f1e5-1f10-4139-91d7-c915e79eabf8"},{"name":"Get Information About All Lists","id":"76a0d1f9-02fe-4e33-8278-083c452b3d78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.transmitsms.com/get-lists.json","description":"<h2 id=\"get-information-about-all-lists-in-your-account\">Get information about all lists in your account</h2>\n<p>This will return metadata on all your lists</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td>NO</td></tr><tr><td><strong>max</strong></td><td>integer</td><td><strong>Maximum results returned per page</strong></td><td>NO</td></tr><tr><td><strong>response_style</strong></td><td>string</td><td><strong>response_style = 'array'</strong> returns custom field lists as an array</td><td>NO</td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>lists_total</strong></td><td><strong>Count of number of lists in your account</strong></td></tr><tr><td><strong>lists</strong></td><td><p><strong>Information about lists in your account</strong></p><table><tbody><tr><td><strong>id</strong></td><td><p><strong>Numeric ID of the list</strong></p></td></tr><tr><td><strong>name</strong></td><td><strong>Name of list</strong></td></tr><tr><td><strong>created</strong></td><td><p><strong>Date and time that contact was first added to list</strong></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></td></tr><tr><td><strong>members_active</strong><br /></td><td><p><strong>Count of active members on list</strong></p></td></tr><tr><td><strong>fields</strong><br /></td><td><p><strong>Custom field name </strong></p><p>List of custom field names by field_n where n = is an integer between 1 and 10.</p></td></tr><tr><td><strong>members_total</strong><br /></td><td><strong>Total number of contacts on list</strong><br /></td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-lists.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"bd76fb18-43a8-4655-b7a1-71cabe69ec51","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"https://api.transmitsms.com/get-lists.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 03:11:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"lists_total\": 2,\n    \"lists\": [\n        {\n            \"id\": 4070887,\n            \"name\": \"My Test List\",\n            \"created\": \"2020-05-14 03:42:31\",\n            \"members_active\": 3,\n            \"fields\": [],\n            \"members_total\": 5\n        },\n        {\n            \"id\": 4086208,\n            \"name\": \"Quick SMS Favourites List\",\n            \"created\": \"2020-05-19 07:43:28\",\n            \"members_active\": 0,\n            \"fields\": [],\n            \"members_total\": 0\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"d3d8dc7d-f99f-41f9-afbd-b027a13a9d5d","name":"Example 3","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"https://api.transmitsms.com/get-lists.json?response_style=array","protocol":"https","host":["api","transmitsms","com"],"path":["get-lists.json"],"query":[{"key":"response_style","value":"array"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Jun 2020 23:27:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"lists_total\": 6,\n    \"lists\": [\n        {\n            \"id\": 4086208,\n            \"name\": \"Quick SMS Favourites List\",\n            \"created\": \"2020-05-19 07:43:28\",\n            \"members_active\": 0,\n            \"fields\": [],\n            \"members_total\": 0\n        },\n        {\n            \"id\": 4213644,\n            \"name\": \"Customer List\",\n            \"created\": \"2020-06-24 05:25:48\",\n            \"members_active\": 0,\n            \"fields\": [\n                {\n                    \"name\": \"field_1\",\n                    \"value\": \"Email\"\n                },\n                {\n                    \"name\": \"field_2\",\n                    \"value\": \"Postcode\"\n                },\n                {\n                    \"name\": \"field_3\",\n                    \"value\": \"ID\"\n                },\n                {\n                    \"name\": \"field_4\",\n                    \"value\": \"Handset\"\n                }\n            ],\n            \"members_total\": 2\n        },\n        {\n            \"id\": 4213652,\n            \"name\": \"User List\",\n            \"created\": \"2020-06-24 05:26:59\",\n            \"members_active\": 0,\n            \"fields\": [\n                {\n                    \"name\": \"field_1\",\n                    \"value\": \"Email\"\n                },\n                {\n                    \"name\": \"field_2\",\n                    \"value\": \"Postcode\"\n                },\n                {\n                    \"name\": \"field_3\",\n                    \"value\": \"ID\"\n                }\n            ],\n            \"members_total\": 0\n        },\n        {\n            \"id\": 4214121,\n            \"name\": \"My Test List\",\n            \"created\": \"2020-06-24 07:06:42\",\n            \"members_active\": 3,\n            \"fields\": [],\n            \"members_total\": 4\n        },\n        {\n            \"id\": 4214634,\n            \"name\": \"auto list for keyword NEWS\",\n            \"created\": null,\n            \"members_active\": 0,\n            \"fields\": [],\n            \"members_total\": 0\n        },\n        {\n            \"id\": 4214637,\n            \"name\": \"auto list for keyword GYM\",\n            \"created\": null,\n            \"members_active\": 0,\n            \"fields\": [],\n            \"members_total\": 0\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"d555cc52-cfc0-4eb1-88ef-6d9d10a6a2ca","name":"Example 2","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"url":"https://api.transmitsms.com/get-lists.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 03:21:51 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <page>\n        <count>1</count>\n        <number>1</number>\n    </page>\n    <lists_total>2</lists_total>\n    <lists>\n        <item>\n            <id>4070887</id>\n            <name>My Test List</name>\n            <created>2020-05-14 03:42:31</created>\n            <members_active>3</members_active>\n            <fields/>\n            <members_total>5</members_total>\n        </item>\n        <item>\n            <id>4086208</id>\n            <name>Quick SMS Favourites List</name>\n            <created>2020-05-19 07:43:28</created>\n            <members_active>0</members_active>\n            <fields/>\n            <members_total>0</members_total>\n        </item>\n    </lists>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"76a0d1f9-02fe-4e33-8278-083c452b3d78"},{"name":"Get Contact Information","id":"c9512db7-579f-42a6-ae36-df8662e450c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/get-contact.json","description":"<h2 id=\"get-information-about-a-contact-on-a-list\">Get information about a contact on a list</h2>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>list_id</strong></td><td>integer</td><td><strong>Numeric ID of the list contact is on</strong></td><td>YES</td></tr><tr><td><strong>msisdn</strong></td><td>integer</td><td><strong>Mobile number of contact being queried</strong></td><td>YES</td></tr><tr><td><strong>response_style</strong></td><td>string</td><td><strong>response_style = 'array'</strong> returns custom field lists as an array</td><td>NO</td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>list_id</strong></td><td><strong>Numeric ID of the list contact is on</strong></td></tr><tr><td><strong>msisdn</strong></td><td><strong>Mobile number of contact</strong></td></tr><tr><td><strong>first_name</strong></td><td><p><strong>First name of contact</strong></p></td></tr><tr><td><strong>last_name</strong></td><td><p><strong>Last name of contact</strong></p></td></tr><tr><td><strong>created_at</strong><br /></td><td><p><strong>Date and time that contact was first added to list</strong></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></td></tr><tr><td><strong>status</strong><br /></td><td><strong>Status of contact</strong><br /><br /><table><tbody><tr><td><strong>active</strong></td><td>Contact is active<br /></td></tr><tr><td><strong>inactive</strong></td><td>Contact is inactive</td></tr></tbody></table></td></tr><tr><td><strong>fields</strong></td><td><strong>Custom field value</strong><p>List of custom field values by <strong>field name.</strong> </p></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-contact.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"131b3302-965d-49d6-a2c9-51130ca6b656","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4070887","type":"text"},{"key":"msisdn","value":"61429625067","type":"text"}]},"url":"https://api.transmitsms.com/get-contact.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 03:26:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 4070887,\n    \"msisdn\": 61429625067,\n    \"first_name\": \"Ella\",\n    \"last_name\": \"B\",\n    \"created_at\": \"2020-06-23 23:23:01\",\n    \"status\": \"active\",\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"47b20518-e771-4c74-b028-4c48dd008ab4","name":"Example 3","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213652","type":"text"},{"key":"msisdn","value":"+61423093477","type":"text"},{"key":"response_style","value":"array","type":"text"}]},"url":"https://api.transmitsms.com/get-contact.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 30 Jun 2020 04:27:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 4213652,\n    \"msisdn\": 61423093477,\n    \"first_name\": \"Charlie\",\n    \"last_name\": \"Green\",\n    \"created_at\": \"2020-06-30 04:27:19\",\n    \"status\": \"active\",\n    \"fields\": [\n        {\n            \"name\": \"Email\",\n            \"value\": \"CharlieGreen@gmail.com\"\n        },\n        {\n            \"name\": \"Postcode\",\n            \"value\": 2758\n        },\n        {\n            \"name\": \"ID\",\n            \"value\": \"\"\n        },\n        {\n            \"name\": \"Address\",\n            \"value\": \"\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"c9512db7-579f-42a6-ae36-df8662e450c1"}],"id":"3d4c3657-0efc-4a2a-a0d2-574537f3d6bc","description":"<p>Get information about a message or campaign that you have sent</p>\n","event":[{"listen":"prerequest","script":{"id":"eca8741b-e382-4ab8-a6a0-41f5133e72ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ebd0d2bd-a4d8-4776-9a34-027fa4b2b371","type":"text/javascript","exec":[""]}}],"_postman_id":"3d4c3657-0efc-4a2a-a0d2-574537f3d6bc"},{"name":"Contacts & Lists","item":[{"name":"Add List","id":"689eca8b-3657-488d-87c9-7dd69f70a3c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/add-list.json","description":"<h1 id=\"create-new-contact-list\">Create New Contact List</h1>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>name</strong><br /></td><td>string</td><td><p><strong>A unique name for the list</strong></p></td><td>YES</td></tr><tr><td><strong>field_n</strong></td><td>string</td><td><p><strong>Custom field name </strong></p><p>Firstname and lastname are created by default, There can be up to 10 extra custom fields. n is an integer between 1 and 10.</p></td><td>NO</td></tr><tr><td><strong>response_style</strong></td><td>string</td><td><strong>response_style = 'array'</strong> returns custom field lists as an array</td><td>NO</td></tr></tbody></table>\n\n<h2 id=\"responses\">Responses</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>id</strong><br /></td><td><p><strong>A unique name for the list</strong></p></td></tr><tr><td><strong>name</strong></td><td><p><strong>Custom field name </strong></p><p>Firstname and lastname are created by default, There can be up to 10 extra custom fields. n is an integer between 1 and 10.</p></td></tr><tr><td><strong>created</strong></td><td><p><strong>Date and time list was created</strong></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></td></tr><tr><td><strong>members_active</strong></td><td><strong>Always returns 0 for new list</strong></td></tr><tr><td><strong>fields</strong></td><td><strong>Names of created custom fields</strong></td></tr><tr><td><strong>errors</strong></td><td>Error messages related to this call, for general errors see the API <a href=\"https://developer.transmitsms.com/?version=latest#intro\">Introduction</a><br /><br /><table><thead><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>MISSING_PARAM</strong></td><td>400</td><td>Field parameter is missing (eg. field_n)<br /></td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["add-list.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"33c2581f-ff2f-4e5d-9612-eeccc2206537","name":"Example 3","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"New Contacts 2","type":"text"},{"key":"field_1","value":"FirstName","type":"text"},{"key":"field_2","value":"LastName","type":"text"},{"key":"response_style","value":"array","type":"text"}]},"url":"https://api.transmitsms.com/add-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 30 Jun 2020 05:02:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4236712,\n    \"name\": \"New Contacts 2\",\n    \"created\": \"2020-06-30 05:02:15\",\n    \"members_active\": 0,\n    \"fields\": [\n        {\n            \"name\": \"field_1\",\n            \"value\": \"FirstName\"\n        },\n        {\n            \"name\": \"field_2\",\n            \"value\": \"LastName\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"4325115c-1a8a-4608-bd5d-bcea5b5961f1","name":"Example 1","originalRequest":{"method":"POST","header":[{"key":"","value":"","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"Customer List","type":"text"},{"key":"field_1","value":"Email","type":"text"},{"key":"field_2","value":"Postcode","type":"text"},{"key":"field_3","value":"ID","type":"text"}]},"url":"https://api.transmitsms.com/add-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 05:25:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4213644,\n    \"name\": \"Customer List\",\n    \"created\": \"2020-06-24 05:25:48\",\n    \"members_active\": 0,\n    \"fields\": {\n        \"field_1\": \"Email\",\n        \"field_2\": \"Postcode\",\n        \"field_3\": \"ID\"\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"afb8ea04-f3ba-4791-ab49-bf144aa77474","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"User List","type":"text"},{"key":"field_1","value":"Email","type":"text"},{"key":"field_2","value":"Postcode","type":"text"},{"key":"field_3","value":"ID","type":"text"}]},"url":"https://api.transmitsms.com/add-list.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 05:26:59 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <id>4213652</id>\n    <name>User List</name>\n    <created>2020-06-24 05:26:59</created>\n    <members_active>0</members_active>\n    <fields>\n        <field_1>Email</field_1>\n        <field_2>Postcode</field_2>\n        <field_3>ID</field_3>\n    </fields>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"689eca8b-3657-488d-87c9-7dd69f70a3c3"},{"name":"Add Field to List","id":"739fc49d-3a26-4037-a715-a4717fe0ba2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/add-field-to-list.json","description":"<h2 id=\"add-or-update-custom-fields-on-an-existing-list\">Add or update custom fields on an existing list</h2>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>list_id</strong><br /></td><td>integer</td><td><p><strong>ID of the list to add to</strong></p></td><td>YES</td></tr><tr><td><strong>field_n</strong></td><td>string</td><td><p><strong>Custom field name </strong></p><p>Firstname and lastname are created by default, There can be up to 10 extra custom fields. n is an integer between 1 and 10.</p></td><td>YES (at least 1)</td></tr><tr><td><strong>response_style</strong></td><td>string</td><td><strong>response_style = 'array'</strong> returns custom field lists as an array</td><td>NO</td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>custom_n</strong><br /></td><td><p><strong>Custom field names created</strong></p></td></tr><tr><td><strong>id</strong></td><td><p><strong>ID of the list added to</strong></p></td></tr><tr><td><strong>error</strong></td><td>Error messages related to this call, for general errors see the API <a href=\"https://developer.transmitsms.com/?version=latest#intro\">Introduction</a><br /><br /><table><thead><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>MISSING_PARAM</strong></td><td>400</td><td>Field parameter is missing (eg. field_n)<br /></td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["add-field-to-list.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"483a74d3-c359-40a8-8068-ab997187c9bd","name":"Example 3","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213652","type":"text"},{"key":"field_4","value":"Address","type":"text"},{"key":"response_style","value":"array","type":"text"}]},"url":"https://api.transmitsms.com/add-field-to-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 30 Jun 2020 03:48:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"fields\": [\n        {\n            \"name\": \"custom_4\",\n            \"value\": \"Address\"\n        }\n    ],\n    \"id\": 4213652,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"5218b9b4-81de-44d0-97ec-c6d7720650f4","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213644","type":"text"},{"key":"field_4","value":"Handset","type":"text"}]},"url":"https://api.transmitsms.com/add-field-to-list.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 06:58:41 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <custom_4>Handset</custom_4>\n    <id>4213644</id>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"ae4211f3-6826-4f1a-a1d6-f6a8b1b98c74","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213644","type":"text"},{"key":"field_4","value":"Handset","type":"text"}]},"url":"https://api.transmitsms.com/add-field-to-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 06:57:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"custom_4\": \"Handset\",\n    \"id\": 4213644,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"739fc49d-3a26-4037-a715-a4717fe0ba2a"},{"name":"Remove List","id":"3e5e5582-42a9-463f-9330-4d3250aa5c1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/remove-list.json","description":"<h1 id=\"delete-a-list-and-its-contacts\">Delete a list and its contacts</h1>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>list_id</strong></td><td>integer</td><td><p><strong>Numeric ID of list to be removed.</strong></p><p>List ID's can be retrieved with get-lists request.</p></td><td>YES</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["remove-list.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"06a3dde3-b5dd-48b7-aa71-568dd73e9932","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4070887","type":"text"}]},"url":"https://api.transmitsms.com/remove-list.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:02:38 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"b54b53e3-29ef-4f44-a1d2-6e7b3910d99b","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4070887","type":"text"}]},"url":"https://api.transmitsms.com/remove-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:01:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"3e5e5582-42a9-463f-9330-4d3250aa5c1e"},{"name":"Add Contact to List","id":"2c0d5923-4673-4b18-bd83-50fa3cac045c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/add-to-list.json","description":"<h2 id=\"adds-a-new-contact-to-a-list\">Adds a new contact to a list</h2>\n<p>If a contact is added that already exists it will be ignored, not updated.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>list_id</strong><br /></td><td>integer</td><td><p><strong>ID of the list to be added to</strong><br />This ID is the numerical reference to one of your recipient lists. It is found in the URL and displayed on a destination list page in your account.</p><p>A list ID can also be created using the add-list call.</p></td><td>YES</td></tr><tr><td><strong>msisdn</strong></td><td>string</td><td><p><strong>Mobile number being added to list</strong></p><p>Invalid numbers will be ignored.</p><p>Number must be defined in E.164 international format. You can use <strong>countrycode</strong> parameter to format numbers that are in local format.</p></td><td>YES</td></tr><tr><td><strong>countrycode</strong></td><td>string</td><td><p><strong>Format the to number in international format. </strong></p><p>2 letter ISO 3166 format country code or country name. Automatically formats numbers to international format required for reliable SMS delivery. eg. In Australia 0422222222 will become 6142222222 when set to AU or Australia. If not set to numbers must be defined in E.164 international format.<br /><br /></p><table><thead><tr><th>COUNTRY</th><th>COUNTRY CODE</th><th>LOCAL</th><th>INTERNATIONAL</th></tr></thead><tbody><tr><td>Australia</td><td>au</td><td>0491570156</td><td>61491570156</td></tr><tr><td>New Zealand</td><td>nz</td><td>0212670129</td><td>64212670129</td></tr><tr><td>United Kingdom</td><td>gb</td><td>0750017696</td><td>44750017696</td></tr><tr><td>United States</td><td>us</td><td>2513551145</td><td>12513551145</td></tr></tbody></table></td><td>NO</td></tr><tr><td><strong>first_name</strong></td><td>string</td><td><strong>First name of contact being added</strong><br /></td><td>NO</td></tr><tr><td><strong>last_name</strong></td><td>string</td><td><strong>Last name of contact being added</strong><br /></td><td>NO</td></tr><tr><td><strong>field_n</strong></td><td>string</td><td><p><strong>Custom field name </strong></p><p>Firstname and lastname are created by default, There can be up to 10 extra custom fields. n is an integer between 1 and 10.</p></td><td>NO</td></tr><tr><td><strong>response_style</strong></td><td>string</td><td><strong>response_style = 'array'</strong> returns custom field lists as an array</td><td>NO</td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>list_id</strong><br /></td><td><p><strong>Numeric ID of the list that contact was added to</strong></p></td></tr><tr><td><strong>msisdn</strong></td><td><p><strong>Mobile number of contact that was added</strong></p></td></tr><tr><td><strong>firstname</strong></td><td><p><strong>First name of contact added</strong></p></td></tr><tr><td><strong>lastname</strong></td><td><strong>Last name of contact added</strong></td></tr><tr><td><strong>created_at</strong></td><td><p><strong>Date and time contact was added</strong></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></td></tr><tr><td><strong>status</strong><br /></td><td><strong>Status of contact</strong><br />This is always set to active with this request.<br /></td></tr><tr><td><strong>fields</strong></td><td><strong>Values assigned to custom fields</strong><br /></td></tr><tr><td><strong>errors</strong></td><td>Error messages related to this call, for general errors see the API <a href=\"https://developer.transmitsms.com/?version=latest#intro\">Introduction</a><br /><br /><table><thead><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>BAD _MOBILE</strong><br /></td><td>400</td><td>The mobile provided is invalid<br /></td></tr><tr><td><strong>BAD_MOBILE_COUNTRY</strong></td><td>400<br /></td><td>The country of the mobile provided is unavailable</td></tr><tr><td><strong>OPTOUT</strong></td><td>400</td><td>The recipient provided was previously opted out</td></tr><tr><td><strong>DUPLICATE_DELETED</strong></td><td>400</td><td>The recipient provided was previously deleted</td></tr><tr><td><strong>KEY_EXISTS</strong></td><td>400</td><td>Contact with such mobile already exists</td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["add-to-list.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"5fe1a5c4-48be-431e-8cf9-433c00a6daf0","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213644","type":"text"},{"key":"msisdn","value":"61429720235","type":"text"},{"key":"firstname","value":"Ella","type":"text"},{"key":"lastname","value":"B","type":"text"},{"key":"countrycode","value":"au","type":"text"},{"key":"field_1","value":"Telstra","type":"text"}]},"url":"https://api.transmitsms.com/add-to-list.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:09:03 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <list_id>4213644</list_id>\n    <msisdn>61429720235</msisdn>\n    <first_name/>\n    <last_name/>\n    <created_at>2020-06-24 07:09:03</created_at>\n    <status>active</status>\n    <fields>\n        <Email>Telstra</Email>\n        <Postcode/>\n        <ID/>\n        <Handset/>\n    </fields>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"74f4d73c-c59e-44f2-823c-bdc7186652a5","name":"Example 3","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213652","type":"text"},{"key":"msisdn","value":"61429625067","type":"text"},{"key":"field_1","value":"ID","type":"text"},{"key":"field_2","value":"Address","type":"text"},{"key":"response_style","value":"array","type":"text"}]},"url":"https://api.transmitsms.com/add-to-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 30 Jun 2020 05:11:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 4213652,\n    \"msisdn\": 61429625067,\n    \"first_name\": \"\",\n    \"last_name\": \"\",\n    \"created_at\": \"2020-06-30 05:11:12\",\n    \"status\": \"active\",\n    \"fields\": [\n        {\n            \"name\": \"Email\",\n            \"value\": \"ID\"\n        },\n        {\n            \"name\": \"Postcode\",\n            \"value\": \"Address\"\n        },\n        {\n            \"name\": \"ID\",\n            \"value\": \"\"\n        },\n        {\n            \"name\": \"Address\",\n            \"value\": \"\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"9ce3c94e-058c-4219-9a28-0ddf2fdf000f","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213644","type":"text"},{"key":"msisdn","value":"61429625067","type":"text"},{"key":"firstname","value":"Charles","type":"text"},{"key":"lastname","value":"Gordon","type":"text"},{"key":"countrycode","value":"au","type":"text"},{"key":"field_1","value":"Telstra","type":"text"}]},"url":"https://api.transmitsms.com/add-to-list.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:06:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 4213644,\n    \"msisdn\": 61429625067,\n    \"first_name\": \"\",\n    \"last_name\": \"\",\n    \"created_at\": \"2020-06-24 07:06:57\",\n    \"status\": \"active\",\n    \"fields\": {\n        \"Email\": \"Telstra\",\n        \"Postcode\": \"\",\n        \"ID\": \"\",\n        \"Handset\": \"\"\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"2c0d5923-4673-4b18-bd83-50fa3cac045c"},{"name":"Update Contact","id":"91844e62-f8f2-4ddb-9866-0bcacdce046b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.transmitsms.com/edit-list-member.json","description":"<h2 id=\"edit-a-contact-that-exists-on-a-list\">Edit a contact that exists on a list</h2>\n<p>Used for adding new or updated custom data to a contact on a list.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><tbody><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr><tr><td><div><b>list_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>ID of the list to be added to</b><br />This ID is the numerical reference to one of your recipient lists. It is found in the URL and displayed on a destination list page in your account.</p><p>A list ID can also be created using the add-list call.</p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>YES</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>msisdn</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Mobile number of contact being updated.</b></p><p>Invalid numbers will be ignored.</p><p>Number must be defined in E.164 international format.</p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>YES</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>first_name</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>First name of contact being added</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>last_name</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Last name of contact being added</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>field_n</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Custom field name </b></p><p>Firstname and lastname are created by default, There can be up to 10 extra custom fields. n is an integer between 1 and 10.</p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>list_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Numeric ID of the list that contact was added to</b></p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>msisdn</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Mobile number of contact that was added</b></p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>firstname</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>First name of contact added</b></p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>lastname</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Last name of contact added</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>created_at</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Date and time contact was added</b></p><p>Returned in ISO8601 format YYYY-MM-DD HH:MM:SS in UTC Timezone.</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>status</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Status of contact</b><br />This is always set to active with this request.<br /></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>fields</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Values assigned to custom fields</b></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>errors</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Error messages related to this call, for general errors see the API <a href=\"https://developer.transmitsms.com/?version=latest#intro\">Introduction</a><br /><br /></p><div><table><tbody><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr><tr><td><div><b>BAD _MOBILE</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The mobile provided is invalid<br /></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>BAD_MOBILE_COUNTRY</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400<br /></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The country of the mobile provided is unavailable</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>OPTOUT</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The recipient provided was previously opted out</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>DUPLICATE_DELETED</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The recipient provided was previously deleted</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>KEY_EXISTS</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contact with such mobile already exists</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["edit-list-member.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"7b901196-bcf3-4029-b5ae-8795fe52186f","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213644","type":"text"},{"key":"msisdn","value":"61429720235","type":"text"},{"key":"firstname","value":"Mike","type":"text"},{"key":"lastname","value":"Gordon","type":"text"},{"key":"field_1","value":"Optus","type":"text"}]},"url":"https://api.transmitsms.com/edit-list-member.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:13:26 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <list_id>4213644</list_id>\n    <msisdn>61429720235</msisdn>\n    <first_name/>\n    <last_name/>\n    <created_at>2020-06-24 07:09:03</created_at>\n    <status>active</status>\n    <fields>\n        <Email>Optus</Email>\n        <Postcode/>\n        <ID/>\n        <Handset/>\n    </fields>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"dc4826f2-9a9f-42c5-9f90-19e4be366e9d","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213644","type":"text"},{"key":"msisdn","value":"61429720235","type":"text"},{"key":"firstname","value":"Mike","type":"text"},{"key":"lastname","value":"Gordon","type":"text"},{"key":"field_1","value":"Optus","type":"text"}]},"url":"https://api.transmitsms.com/edit-list-member.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:12:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 4213644,\n    \"msisdn\": 61429720235,\n    \"first_name\": \"\",\n    \"last_name\": \"\",\n    \"created_at\": \"2020-06-24 07:09:03\",\n    \"status\": \"active\",\n    \"fields\": {\n        \"Email\": \"Optus\",\n        \"Postcode\": \"\",\n        \"ID\": \"\",\n        \"Handset\": \"\"\n    },\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"91844e62-f8f2-4ddb-9866-0bcacdce046b"},{"name":"Remove Contact","id":"f8127a1e-d0f3-4bb1-92fc-d5c6089329b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://api.transmitsms.com/delete-from-list.json","description":"<h2 id=\"delete-contact-from-one-or-all-lists\">Delete contact from one or all lists</h2>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>list_id</strong></td><td>integer</td><td><p><strong>Numeric ID of list to remove contact from.</strong></p><p>If set to 0 (zero) the contact will be removed from all lists.</p></td><td>NO</td></tr><tr><td><strong>msisdn</strong></td><td>integer</td><td><strong>Mobile number of contact being removed.</strong><p>Number must be defined in E.164 international format. You can use countrycode parameter to format numbers that are in local format.</p></td><td>YES</td></tr><tr><td><strong>countrycode</strong></td><td>string</td><td><p><strong>Format the to number in international format. </strong></p><p>2 letter ISO 3166 format country code or country name. Automatically formats numbers to international format required for reliable SMS delivery. eg. In Australia 0422222222 will become 6142222222 when set to AU or Australia. If not set to numbers must be defined in E.164 international format.<br /><br /></p><table><thead><tr><th>COUNTRY</th><th>COUNTRY CODE</th><th>LOCAL</th><th>INTERNATIONAL</th></tr></thead><tbody><tr><td>Australia</td><td>au</td><td>0491570156</td><td>61491570156</td></tr><tr><td>New Zealand</td><td>nz</td><td>0212670129</td><td>64212670129</td></tr><tr><td>United Kingdom</td><td>gb</td><td>0750017696</td><td>44750017696</td></tr><tr><td>United States</td><td>us</td><td>2513551145</td><td>12513551145</td></tr></tbody></table></td><td>NO</td></tr></tbody></table>\n\n<h2 id=\"responses\">Responses</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>list_ids</strong></td><td><p><strong>One or more list ID's that contact was removed from</strong></p></td></tr><tr><td><strong>error</strong></td><td>Error messages related to this call, for general errors see the API <a href=\"https://developer.transmitsms.com/?version=latest#intro\">Introduction</a><br /><br /><table><thead><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>NOT_FOUND</strong></td><td>400</td><td>Contact with such mobile does not exist in this list.</td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["delete-from-list.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"0ae59069-c66c-4ad5-82ac-314cfd2d0abd","name":"Example 1","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4213644","type":"text"},{"key":"msisdn","value":"61429720235","type":"text"}]},"url":"https://api.transmitsms.com/delete-from-list.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:18:42 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <list_ids>\n        <item>4213644</item>\n    </list_ids>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"1ebdbbef-5930-4c19-979a-d735c0ba1a83","name":"Example 3","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4263168","type":"text"},{"key":"msisdn","value":"478038915","type":"text"},{"key":"countrycode","value":"AU","type":"text"}]},"url":{"raw":"https://api.transmitsms.com/delete-from-list.json?List_id=4263168&msisdn=61478038915","protocol":"https","host":["api","transmitsms","com"],"path":["delete-from-list.json"],"query":[{"key":"List_id","value":"4263168"},{"key":"msisdn","value":"61478038915"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 23:56:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_ids\": [\n        4263168\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"e2084e2b-17a2-4d05-a26e-3b9c4a9501bb","name":"Example 2","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4263168","type":"text"},{"key":"msisdn","value":"61478038915","type":"text"}]},"url":{"raw":"https://api.transmitsms.com/delete-from-list.json?List_id=4263168&msisdn=61478038915","protocol":"https","host":["api","transmitsms","com"],"path":["delete-from-list.json"],"query":[{"key":"List_id","value":"4263168"},{"key":"msisdn","value":"61478038915"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Sep 2020 23:55:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_ids\": [\n        4263168\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"f8127a1e-d0f3-4bb1-92fc-d5c6089329b3"},{"name":"Opt Out/Unsubscribe Contact","id":"43733dcf-41d0-4348-9dba-f15490e4df75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/optout-list-member.json","description":"<h1 id=\"opt-out-list-member\">Opt Out List Member</h1>\n<p>Unsubscribe contact from one or all lists<br />If sending marketing by law you must enable an unsubscribe method. <a href=\"https://help.burstsms.com/s/article/44001077041-anti-spam-policy\">Anti-Spam Policy</a></p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><tbody><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr><tr><td><div><b>list_id</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Numeric ID of list to opt out contact from.</b></p><p>If set to 0 (zero) the contact will be opted out from all lists.<br />If your Global Opt Out (GOO) list is switched on, unsubscribing from a single list will unsubscribe from all lists and add to your GOO list.<br /><a href=\"https://support.transmitsms.com/support/solutions/articles/44001940660-how-to-manage-your-global-opt-out-list-goo-\">How to manage your Global Opt Out list (GOO)</a></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>msisdn</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Mobile number of contact being opted out.</b></p><p>Number must be defined in E.164 international format. </p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>YES</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h2 id=\"responses\">Responses</h2>\n<table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>list_ids</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>One or more list ID's that contact was opted out of.</b></p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>error</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Error messages related to this call, for general errors see the API <a href=\"https://developer.transmitsms.com/?version=latest#intro\">Introduction</a><br /><br /></p><div><table><tbody><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr><tr><td><div><b>NOT_FOUND</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contact with such mobile does not exist in this list.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["optout-list-member.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"e4601dab-4996-4b72-9586-aaa535666c68","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4214121","type":"text"},{"key":"msisdn","value":"61429720235","type":"text"}]},"url":"https://api.transmitsms.com/optout-list-member.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:25:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_ids\": [\n        4214121\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"ec948d09-4f97-4fdc-86f3-21492c5b125a","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4214121","type":"text"},{"key":"msisdn","value":"61429720235","type":"text"}]},"url":"https://api.transmitsms.com/optout-list-member.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:30:06 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <list_ids>\n        <item>4214121</item>\n    </list_ids>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"43733dcf-41d0-4348-9dba-f15490e4df75"},{"name":"Bulk Add Contacts from CSV File","id":"f3875636-7ba0-4c2f-ae61-3b5a25d37c36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://api.transmitsms.com/add-contacts-bulk.json","description":"<h2 id=\"add-bulk-contacts-to-a-list-from-a-file\">Add bulk contacts to a list from a file</h2>\n<p>The add-contacts-bulk request can be used to add a CSV file of contacts to an existing list. It can also be used to create a new list and upload a CSV file of contacts to it. If a contact is added that already exists in a list, any existing data will be updated.</p>\n<p><strong>The return code 200 is only used to indicate that the API call has successfully hit our server. It in no way indicates if the contacts have been added\\updated successfully.\nTo find the status of an upload, including error messages, you must use the add-contacts-bulk-progress endpoint.</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>CSV File Format and Example:\n        Firstname,Lastname,Mobile,\"Custom Field 1\"\n        Jane,Doe,61412345678,10.44\n\nThe minimum required for successful import is Mobile.\n\nThe order above must be followed.\n</code></pre><h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>list_id</strong></td><td>integer</td><td><p><strong>ID of the list to be added to</strong><br />This ID is the numerical reference to one of your recipient lists.</p></td><td>If name is not set</td></tr><tr><td><strong>name</strong></td><td>string</td><td><p><strong>Name of the list to create and add contacts to</strong></p><p>If this is set a new list will be created with this name. The list ID will be returned in the API response.</p></td><td>If list_id not set</td></tr><tr><td><strong>countrycode</strong></td><td>string</td><td><p><strong>Format the to number in international format. </strong></p><p>2 letter ISO 3166 format country code or country name. Automatically formats numbers to international format required for reliable SMS delivery. eg. In Australia 0422222222 will become 6142222222 when set to AU or Australia. If not set to numbers must be defined in E.164 international format.<br /><br /></p><table><thead><tr><th>COUNTRY</th><th>COUNTRY CODE</th><th>LOCAL</th><th>INTERNATIONAL</th></tr></thead><tbody><tr><td>Australia</td><td>au</td><td>0491570156</td><td>61491570156</td></tr><tr><td>New Zealand</td><td>nz</td><td>0212670129</td><td>64212670129</td></tr><tr><td>United Kingdom</td><td>gb</td><td>0750017696</td><td>44750017696</td></tr><tr><td>United States</td><td>us</td><td>2513551145</td><td>12513551145</td></tr></tbody></table></td><td>NO</td></tr><tr><td><strong>file_url</strong></td><td>url</td><td><p><strong>UR</strong><strong>L location of the CSV file containing the contact list.</strong></p><ul><li>Must be a direct URL to the file, cannot be a redirected URL. </li><li>Cannot be a file on a local machine.</li><li>File must contain a column with the header ‘mobile’</li><li>To maximise API performance no error will be returned if call fails. ID returned in response will be automatically deleted.</li><li>To get status of call use <strong>add-contacts-bulk-progress</strong></li><li>Basic auth can be used to secure file eg. <a href=\"https://username:password@domain.com/file\">https://username:password@domain.com/file</a></li></ul></td><td>NO</td></tr><td><strong>field_n</strong></td><td>string</td><td><p><strong>Create or map a custom field</strong></p><ul><li>There are 10 custom field slots available. The value n is the number of the custom field slot 1 through 10.</li><li>Create a field name using <strong>field_n=name</strong> e.g. <strong>field_1=email</strong>.</li><li>Headers in your file that match the custom field name will be automatically mapped. e.g. Column in CSV file named <strong>email</strong> will be automatically mapped to <strong>field_1=email</strong>.</li><li> If name contains spaces or symbols, other than letters or numbers, these must be URL encoded</li></ul></td><td>NO</td></tbody></table>","urlObject":{"protocol":"https","path":["add-contacts-bulk.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"dc1a47eb-b6b3-4d89-9ad6-8cb58a7d610d","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4214121","type":"text"},{"key":"field_1","value":"email","type":"text"},{"key":"countrycode","value":"AU","type":"text"},{"key":"file_url","value":"https://www.mydomain.com/files/Product-Team.csv","type":"text"}]},"url":"https://api.transmitsms.com/add-contacts-bulk.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:43:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 4214121,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"fe2ac589-297c-4642-9a6d-e101efd1783d","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4214121","type":"text"},{"key":"field_1","value":"email","type":"text"},{"key":"countrycode","value":"AU","type":"text"},{"key":"file_url","value":"https://www.mydomain.com/files/Product-Team.csv","type":"text"}]},"url":"https://api.transmitsms.com/add-contacts-bulk.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 07:47:20 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <list_id>4214121</list_id>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"0f785d1c-21da-4020-8f6a-95ac1749918c","name":"Bulk Add Contacts from CSV File","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"list_id","value":"5388555","type":"text"},{"key":"field_1","value":"amount donated","type":"text"},{"key":"field_2","value":"date donated","type":"text"},{"key":"file_url","value":"https://staging.burstage.com/file1.csv","type":"text"}]},"url":{"raw":"https://api.transmitsms.com/add-contacts-bulk.json?list_id=5388555&field_2=amount donated&field_3=date donated&file_url=https://staging.burstage.com/file1.csv","protocol":"https","host":["api","transmitsms","com"],"path":["add-contacts-bulk.json"],"query":[{"key":"list_id","value":"5388555","type":"text"},{"key":"field_2","value":"amount donated","type":"text"},{"key":"field_3","value":"date donated","type":"text"},{"key":"file_url","value":"https://staging.burstage.com/file1.csv","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Jul 2021 03:00:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"Server","value":"nginx"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 5388555,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"f3875636-7ba0-4c2f-ae61-3b5a25d37c36"},{"name":"Check Progress Of Import","id":"b251895f-a038-4a30-9bef-e4c6aa7c001e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/add-contacts-bulk-progress.json","description":"<p>For large lists in excess of 50,000 contacts, it can take some time to process. This request will let you see the progress of the import.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>list_id</strong></td><td>integer</td><td><p><strong>ID of the list to be checked<br /></strong>This ID is the numerical reference to the list you uploaded the file to.</p></td><td>YES</td></tr></tbody></table>\n\n<h2 id=\"responses\">Responses</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>list_id</strong></td><td><p><strong>ID of the list being checked</strong></p></td></tr><tr><td><strong>status</strong></td><td><p><strong>Status of upload</strong></p><table><thead><tr><th>Value</th><th>Description</th></tr></thead><tbody><tr><td><strong>completed</strong></td><td>File import is complete</td></tr><tr><td><strong>in progress</strong></td><td>File import is still in progress</td></tr><tr><td><strong>failed</strong></td><td>File import has failed</td></tr></tbody></table></td></tr><tr><td><strong>importlength</strong></td><td><strong>Total number of records in file</strong><br />This count will include invalid numbers</td></tr><tr><td><strong>completed</strong></td><td><p><strong>Number of contacts processed</strong></p><p>This gives us an update of all numbers processed, should = importlength when complete.</p></td></tr><tr><td><strong>duplicates</strong></td><td><p><strong>Number of duplicate contacts excluded from import</strong></p><p>Any number that matches an existing contact on the list will not be imported. Only first record imported is kept.</p></td></tr><tr><td><strong>skipped</strong></td><td><p><strong>Number of rows in file skipped</strong></p><p>Can be caused by blank rows, invalid numbers or rows with a blank record in the mobile column.</p></td></tr><tr><td><strong>optout</strong></td><td><strong>Number of contacts that were already opted out.</strong></td></tr><tr><td><strong>imported</strong></td><td><strong>Number of contacts successfully imported.</strong><br /></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["add-contacts-bulk-progress.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"8d5a1360-5533-42f6-ad7e-97f1e8f1cedd","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4214121","type":"text"}]},"url":"https://api.transmitsms.com/add-contacts-bulk-progress.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Jun 2020 06:48:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"list_id\": 4214121,\n    \"status\": \"completed\",\n    \"importlength\": 2,\n    \"completed\": 2,\n    \"duplicates\": 0,\n    \"skipped\": 0,\n    \"optout\": 0,\n    \"imported\": 2,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"dbb8e99c-68dd-4145-8c1f-2b29d34a3297","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"list_id","value":"4214121","type":"text"}]},"url":"https://api.transmitsms.com/add-contacts-bulk-progress.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 25 Jun 2020 06:48:43 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <list_id>4214121</list_id>\n    <status>completed</status>\n    <importlength>2</importlength>\n    <completed>2</completed>\n    <duplicates>0</duplicates>\n    <skipped>0</skipped>\n    <optout>0</optout>\n    <imported>2</imported>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"b251895f-a038-4a30-9bef-e4c6aa7c001e"}],"id":"c45e4314-76cd-423a-ba91-63cfcbff736b","description":"<p>Create a new list including optional custom fields.</p>\n","event":[{"listen":"prerequest","script":{"id":"232e4ac4-5e6c-45fc-bc52-aa29064d7259","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4d79f5d2-ca5d-40e4-b960-40e3e7135a81","type":"text/javascript","exec":[""]}}],"_postman_id":"c45e4314-76cd-423a-ba91-63cfcbff736b"},{"name":"Numbers","item":[{"name":"Add Dedicated Virtual Number","id":"b1f72672-9248-4f28-ac57-0910110582cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/lease-number.json","description":"<h1 id=\"lease-number\">Lease Number</h1>\n<p>Dedicated virtual numbers are used to receive MO (Mobile Originated) messages. They also make sure that all of your messages are sent from a number that is always the same. Dedicated Virtual Number availability is limited to certain countries. Check <a href=\"https://portal.transmitsms.com/s/article/Global-Sender-ID-Information\">Global Sender ID Information</a> for availability for your destination coutry.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><tbody><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr><tr><td><div><b>number</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Number to lease</b></p><p>Omit this field to be given a random number. Use <b>get-numbers</b> to find out which numbers are currently available.</p></div><div><div><div><div></div></div></div><div></div></div></td><td><div>NO</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>forward_url</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div>url</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Assign a callback URL to the number</b><br />A URL on your system which we can call to notify you of incoming messages. If required, this parameter can be different for each message sent.</p><p>Will override the default Reply Callback URL if set in the SETTINGS section of your account.</p><p><a href=\"https://developer.transmitsms.com/?version=latest#http-callbacks\">HTTP Callbacks</a></p></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><tbody><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr><tr><td><div><b>number</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Number assigned to your account</b></p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>price</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Monthly cost of number leased </b><br />In account currency<br /></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>next_charge</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Date of next monthly charge.</b></p><p>In ISO8601 format YYYY-MM-DD Eg. 2020-04-27</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div><b>auto_renew</b></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p><b>Returns auto_renew status of number.</b></p><p>Always returns <b>true</b> for new number</p></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["lease-number.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"794fda12-ac3a-46fd-a744-226d41363a2f","name":"Example 2","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.transmitsms.com/lease-number.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:19:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"number\": 61418279031,\n    \"price\": 25,\n    \"next_charge\": \"2020-07-24\",\n    \"auto_renew\": true,\n    \"status\": \"active\",\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"8df837e7-0259-4b21-8a81-af985978f78e","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"filter","value":"available","type":"text"}]},"url":"https://api.transmitsms.com/lease-number.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:15:43 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"number\": 61417861086,\n    \"price\": 25,\n    \"next_charge\": \"2020-07-24\",\n    \"auto_renew\": true,\n    \"status\": \"active\",\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"b1f72672-9248-4f28-ac57-0910110582cf"},{"name":"Get Numbers","id":"4b8ca1ea-1e11-4d90-a740-fdb0e6904379","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.transmitsms.com/get-numbers.json","description":"<p>Edit inbound options for a dedicated virtual number.</p>\n<p><strong>Get a list of numbers leased by you or available to be leased.</strong></p>\n<p>Dedicated virtual numbers are used to receive MO (Mobile Originated) messages. They also make sure that all of your messages are sent from a number that is always the same. Dedicated Virtual Number availability is limited to certain countries. Check <a href=\"https://support.transmitsms.com/support/solutions/articles/44001940675-global-sms-delivery-list\">Global SMS delivery list</a> for availability for your destination country.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>filter</strong></td><td>string</td><td><p><strong>Choose owned or available</strong></p><p><strong>owned</strong> - retrieve your own response numbers (default)</p><p><strong>available </strong>- retrieve response numbers available for purchase</p></td><td>NO</td></tr><tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td><br /></td></tr><tr><td><strong>max</strong></td><td>integer</td><td><strong>Maximum results returned per page</strong></td><td><br /></td></tr></tbody></table>\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>page</strong></td><td><p><strong>Count: Number of pages, Number: Page number</strong></p></td></tr><tr><td><strong>numbers_total</strong></td><td><strong>Total amount of numbers leased</strong><br /></td></tr><tr><td><strong>numbers</strong></td><td><p><strong>Data about each leased number</strong></p><table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>number</strong></td><td><p><strong>Number assigned to your account</strong></p></td></tr><tr><td><strong>price</strong></td><td><strong>Monthly cost of number leased </strong><br />In account currency<br /></td></tr><tr><td><strong>next_charge</strong><br /></td><td><p><strong>Date of next monthly charge.</strong></p><p>In ISO8601 format YYYY-MM-DD Eg. 2020-04-27</p></td></tr><tr><td><strong>auto_renew</strong></td><td><p><strong>Returns auto_renew status of number.</strong></p><p>Returns true or false</p></td></tr></tbody></table></td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-numbers.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"6dbe1b20-67f6-4482-83ae-2add7cc303a0","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"https://api.transmitsms.com/get-numbers.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 09:54:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"numbers_total\": 1,\n    \"filter\": \"owned\",\n    \"numbers\": [\n        {\n            \"number\": 61436446702,\n            \"price\": 25,\n            \"auto_renew\": true,\n            \"next_charge\": \"2020-07-15\",\n            \"status\": \"active\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"7a66c69e-cb99-462a-a8f7-8398b4a13145","name":"Example 2","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"url":"https://api.transmitsms.com/get-numbers.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 09:55:22 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <page>\n        <count>1</count>\n        <number>1</number>\n    </page>\n    <numbers_total>1</numbers_total>\n    <filter>owned</filter>\n    <numbers>\n        <item>\n            <number>61436446702</number>\n            <price>25</price>\n            <auto_renew>true</auto_renew>\n            <next_charge>2020-07-15</next_charge>\n            <status>active</status>\n        </item>\n    </numbers>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"4b8ca1ea-1e11-4d90-a740-fdb0e6904379"},{"name":"Get Number Information","id":"09d243d7-56a6-40e6-bf5f-4b43179637eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/get-number.json","description":"<p>Get detailed information about a number you have leased.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>number</strong></td><td>integer</td><td><p><strong>Number to retrieve</strong></p><p>Omit this field to be given a random number. Use <strong>get-numbers</strong> to find out which numbers are currently available.</p></td><td>YES</td></tr></tbody></table>\n\n\n<h2 id=\"response\">Response</h2>\n<table><thead><tr><th>PARAMETER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>number</strong></td><td><p><strong>Number assigned to your account</strong></p></td></tr><tr><td><strong>price</strong></td><td><strong>Monthly cost of number leased </strong><br />In account currency<br /></td></tr><tr><td><strong>next_charge</strong><br /></td><td><p><strong>Date of next monthly charge.</strong></p><p>In ISO8601 format YYYY-MM-DD Eg. 2020-04-27</p></td></tr><tr><td><strong>auto_renew</strong></td><td><p><strong>Returns auto_renew status of number.</strong></p><p>Always returns <strong>true</strong> for new number</p></td></tr><tr><td><strong>status</strong></td><td><strong>Status of number</strong><br />Returns <strong>active</strong></td></tr><tr><td><strong>error</strong></td><td><table><thead><tr><th>CODE</th><th>HEADER</th><th>DESCRIPTION</th></tr></thead><tbody><tr><td><strong>FIELD_INVALID</strong></td><td>400</td><td>This number is not leased to you. (Number has expired and need to be renewed)</td></tr></tbody></table><br /></td></tr></tbody></table>\n\n","urlObject":{"protocol":"https","path":["get-number.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"0b620ee5-3bf7-420e-8069-4d976560f1ec","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"61418279031","type":"text"}]},"url":"https://api.transmitsms.com/get-number.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:23:23 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"number\": 61418279031,\n    \"price\": 25,\n    \"auto_renew\": true,\n    \"next_charge\": \"2020-07-24\",\n    \"status\": \"active\",\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"ed792174-1042-410e-87d6-2bf716a0f430","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"61418279031","type":"text"}]},"url":"https://api.transmitsms.com/get-number.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:23:58 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <number>61418279031</number>\n    <price>25</price>\n    <auto_renew>true</auto_renew>\n    <next_charge>2020-07-24</next_charge>\n    <status>active</status>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"09d243d7-56a6-40e6-bf5f-4b43179637eb"},{"name":"Edit Number Options","id":"ae043319-31b3-403b-9f38-4fc1dd32a73b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/edit-number-options.json","description":"<p>Edit inbound options for a dedicated virtual number.</p>\n<p>These options adjust behaviour for messages that are sent to this number.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>KEY</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>number</strong><br /></td><td>integer</td><td><p><strong>Dedicated virtual number assigned to your account</strong><br />A list of numbers on your account can be retrieved using <a href=\"https://developer.transmitsms.com/?version=latest#4b8ca1ea-1e11-4d90-a740-fdb0e6904379\">get-numbers</a></p></td><td>YES</td></tr><tr><td><strong>forward_email</strong></td><td>email address</td><td><p><strong>Forward incoming SMS to a set of email addresses</strong></p><p>Emails can be comma separated</p></td><td>NO</td></tr><tr><td><strong>forward_sms</strong></td><td>integer</td><td><p><strong>Forward incoming SMS to a set of mobile numbers</strong></p><p>Numbers must be in international format. Can be comma separated.</p></td><td>NO</td></tr><tr><td><strong>forward_url</strong></td><td>url<br /></td><td><strong>Forward incoming messages to a callback URL</strong><br /></td><td>NO</td></tr><tr><td><strong>list_id</strong></td><td>integer</td><td><strong>Add senders of incoming messages to this list</strong><br /></td><td>NO</td></tr><tr><td><strong>welcome_message</strong></td><td>string</td><td><p><strong>Auto responder for all messages received</strong></p></td><td>NO</td></tr><tr><td><strong>members_message</strong></td><td>string</td><td><strong>Auto-response if the number is already on the list. </strong><br />Must be adding the number to a list<br /></td><td>NO</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["edit-number-options.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"8d8bd932-49b8-489d-bcfd-68693b6e0efc","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"61418279031","type":"text"},{"key":"forward_email","value":"email@yourdomain.com","type":"text"},{"key":"forward_sms","value":"61429703715","type":"text"},{"key":"forward_url","value":"https://yoururl.domain.com","type":"text"},{"key":"list_id","value":"4214121","type":"text"},{"key":"welcome_message","value":"You have been added to the list!","type":"text"},{"key":"members_message","value":"You're already on the list!","type":"text"}]},"url":"https://api.transmitsms.com/edit-number-options.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:28:14 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"a17405d4-0b0b-413d-8d13-fbb8bc20e164","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"61418279031","type":"text"},{"key":"forward_email","value":"email@yourdomain.com","type":"text"},{"key":"forward_sms","value":"61429703715","type":"text"},{"key":"forward_url","value":"https://yoururl.domain.com","type":"text"},{"key":"list_id","value":"4214121","type":"text"},{"key":"welcome_message","value":"You have been added to the list!","type":"text"},{"key":"members_message","value":"You're already on the list!","type":"text"}]},"url":"https://api.transmitsms.com/edit-number-options.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:27:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"ae043319-31b3-403b-9f38-4fc1dd32a73b"}],"id":"fa6585fa-54af-4213-b86e-482abb829c4f","description":"<p>Lease a new dedicated number</p>\n","event":[{"listen":"prerequest","script":{"id":"e921304a-23be-4982-a8c5-4566de8d6145","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f99780af-d7f7-47a8-b72d-1297d3c5ea97","type":"text/javascript","exec":[""]}}],"_postman_id":"fa6585fa-54af-4213-b86e-482abb829c4f"},{"name":"Email SMS","item":[{"name":"Add Email","id":"ed57a988-28ce-409e-905e-b1d5bfc3d45b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/add-email.json","description":"<h1 id=\"authorise-email-address\">Authorise Email Address</h1>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tr><td><strong>email</strong></td><td>email address</td><td>Email address to register. You may also register a wild-card email which allows any user on the same domain to use Email to SMS.<br /><br />Wild-card format: *@example.com</td><td>YES</td></tr><tr><td><strong>max_sms</strong></td><td>integer</td><td>The maximum number of SMS messages to send from one email message sent from this email address.<br /><br />Possible values:<br /><strong>1</strong> - up to 160 characters (default)<br /><strong>2</strong> - up to 306 characters<br /><strong>3</strong> - up to 459 characters<br /><strong>4</strong> - up to 612 characters</td><td>NO</td></tr><tr><td><strong>number</strong></td><td>integer</td><td>Optional dedicated virtual number</td><td>NO</td></tr></table>","urlObject":{"protocol":"https","path":["add-email.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"885ed7e8-1372-4448-bdb8-4dc64c30c7df","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"email@yourdomain.com","type":"text"},{"key":"max_sms","value":"2","type":"text"}]},"url":"https://api.transmitsms.com/add-email.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:31:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"ead55798-0c0e-4692-a543-3054e1ee658d","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"email2@yourdomain.com","type":"text"},{"key":"max_sms","value":"2","type":"text"}]},"url":"https://api.transmitsms.com/add-email.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:32:33 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <success>true</success>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"ed57a988-28ce-409e-905e-b1d5bfc3d45b"},{"name":"Delete Email","id":"ae75b7b2-54a2-45c1-ae8e-71a2a5f9cd1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/delete-email.json","description":"<p>Remove an email address from the Email to SMS authorised list.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tr><td><strong>email</strong></td><td>email address</td><td>Email address to remove. You may also use a wild-card email which removes all emails on that domain.<br /><br />Wild-card format: *@example.com</td><td>YES</td></tr></table>","urlObject":{"protocol":"https","path":["delete-email.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"c41c7967-554a-4663-99f2-c819083a5c53","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"email2@yourdomain.com","type":"text"}]},"url":"https://api.transmitsms.com/delete-email.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:35:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"f6272e7d-8995-4987-b420-6ad8c0718508","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"email2@yourdomain.com","type":"text"}]},"url":"https://api.transmitsms.com/delete-email.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:36:02 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <success>true</success>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"ae75b7b2-54a2-45c1-ae8e-71a2a5f9cd1f"}],"id":"351d6617-c1ad-4965-9a06-11c3f2df5d44","description":"<p>Authorise an email address for sending Email to SMS</p>\n","event":[{"listen":"prerequest","script":{"id":"8f78531f-a6fd-4ae5-a622-b96af39e200f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3565ff0a-1fa0-47c6-9a61-6541e1541a51","type":"text/javascript","exec":[""]}}],"_postman_id":"351d6617-c1ad-4965-9a06-11c3f2df5d44"},{"name":"Keywords","item":[{"name":"Add Keyword","id":"f60c580a-9252-4c68-bbc9-7efc4ad01738","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/add-keyword.json","description":"<h1 id=\"add-new-keyword\">Add New Keyword</h1>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr><tr><td> <strong>keyword</strong></td><td>string</td><td>The first word of a text message</td><td>YES</td></tr><tr><td> <strong>number</strong></td><td>integer</td><td>The dedicated virtual number that the keyword belongs to</td><td>YES</td></tr><tr><td> <strong>reference</strong></td><td>string</td><td>Your own reference (up to 100 characters)</td><td>NO</td></tr><tr><td><strong> list_id</strong></td><td>integer</td><td><br />ID of a list to add respondents to, list ID's can be found in the title of a list or in the list page URL</td><td>NO</td></tr><tr><td> <strong>welcome_message</strong></td><td>string</td><td>SMS message to send to new members</td><td>NO</td></tr><tr><td> <strong>members_message</strong></td><td>string</td><td>SMS message to existing members</td><td>NO</td></tr><tr><td><strong> activate</strong></td><td>boolean</td><td>Whether to make the keyword active immediately.<br /><br />Possible values:<br /><strong>true</strong> - activate immediately (default)<br /><strong>false</strong> - create the keyword but do not activate</td><td>NO</td></tr><tr><td><strong> forward_url</strong></td><td>url</td><td>Forward messages to a URL</td><td>NO</td></tr><tr><td><strong> forward_email</strong></td><td>email address</td><td>Forward messages to a set of email addresses</td><td>NO</td></tr><tr><td><strong> forward_sms</strong></td><td>integer</td><td>Forward messages to a set of msisdns</td><td>NO</td></tr></thead></table>","urlObject":{"protocol":"https","path":["add-keyword.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"21222943-09f1-47f8-b25f-0a228faab26c","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"keyword","value":"GYM","type":"text"},{"key":"reference","value":"Gym news","type":"text"},{"key":"number","value":"61418279031","type":"text"},{"key":"status","value":"active","type":"text"},{"key":"billing_date","value":"2020-06-26","type":"text"},{"key":"welcome_message","value":"Welcome to Mike's gym news","type":"text"},{"key":"members_message","value":"Thanks for your continued support","type":"text"},{"key":"forward_url","value":"http://example.com/gym-promo","type":"text"},{"key":"forward_email","value":"news@example.com,mike@example.com","type":"text"},{"key":"forward_sms","value":"61491570157,61491570158","type":"text"}]},"url":"https://api.transmitsms.com/add-keyword.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:59:39 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <keyword>GYM</keyword>\n    <reference>Gym news</reference>\n    <number>61418279031</number>\n    <list_id>4214637</list_id>\n    <welcome_message>Welcome to Mike's gym news</welcome_message>\n    <member_message>Thanks for your continued support</member_message>\n    <forward_url>http://example.com/gym-promo</forward_url>\n    <forward_sms>61491570157,61491570158</forward_sms>\n    <forward_email>news@example.com,mike@example.com</forward_email>\n    <status>open</status>\n    <billing_date>2020-07-24</billing_date>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"2e2032f6-f044-4d99-89ac-f78bfc50430e","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"keyword","value":"NEWS","type":"text"},{"key":"reference","value":"Gym news","type":"text"},{"key":"number","value":"61418279031","type":"text"},{"key":"status","value":"active","type":"text"},{"key":"billing_date","value":"2020-06-26","type":"text"},{"key":"welcome_message","value":"Welcome to Mike's gym news","type":"text"},{"key":"members_message","value":"Thanks for your continued support","type":"text"},{"key":"forward_url","value":"http://example.com/gym-promo","type":"text"},{"key":"forward_email","value":"news@example.com,mike@example.com","type":"text"},{"key":"forward_sms","value":"61491570157,61491570158","type":"text"}]},"url":"https://api.transmitsms.com/add-keyword.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 10:58:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"keyword\": \"NEWS\",\n    \"reference\": \"Gym news\",\n    \"number\": 61418279031,\n    \"list_id\": 4214634,\n    \"welcome_message\": \"Welcome to Mike's gym news\",\n    \"member_message\": \"Thanks for your continued support\",\n    \"forward_url\": \"http://example.com/gym-promo\",\n    \"forward_sms\": \"61491570157,61491570158\",\n    \"forward_email\": \"news@example.com,mike@example.com\",\n    \"status\": \"open\",\n    \"billing_date\": \"2020-07-24\",\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"f60c580a-9252-4c68-bbc9-7efc4ad01738"},{"name":"Edit Keyword","id":"128f2ea3-40db-4f2a-b011-6ba5ebbc031d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/edit-keyword.json","description":"<p>Edit an existing keyword.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr><tr><td> <strong>keyword</strong></td><td>string</td><td>The first word of a text message</td><td>YES</td></tr><tr><td> <strong>number</strong></td><td>integer</td><td>The dedicated virtual number that the keyword belongs to</td><td>YES</td></tr><tr><td> <strong>reference</strong></td><td>string</td><td>Your own reference (up to 100 characters)</td><td>NO</td></tr><tr><td> <strong>status</strong></td><td>string</td><td>Open, will set the Keyword to being active. Closed, will close the Keyword.</td><td>NO</td></tr><tr><td><strong> list_id</strong></td><td>integer</td><td><br />ID of a list to add respondents to, list ID's can be found in the title of a list or in the list page URL</td><td>NO</td></tr><tr><td> <strong>welcome_message</strong></td><td>string</td><td>SMS message to send to new members</td><td>NO</td></tr><tr><td> <strong>members_message</strong></td><td>string</td><td>SMS message to existing members</td><td>NO</td></tr><tr><td><strong> activate</strong></td><td>boolean</td><td>Whether to make the keyword active immediately.<br /><br />Possible values:<br /><strong>true</strong> - activate immediately (default)<br /><strong>false</strong> - create the keyword but do not activate</td><td>NO</td></tr><tr><td><strong> forward_url</strong></td><td>url</td><td>Forward messages to a URL</td><td>NO</td></tr><tr><td><strong> forward_email</strong></td><td>email address</td><td>Forward messages to a set of email addresses</td><td>NO</td></tr><tr><td><strong> forward_sms</strong></td><td>integer</td><td>Forward messages to a set of msisdns</td><td>NO</td></tr></thead></table>","urlObject":{"protocol":"https","path":["edit-keyword.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"3ee788a2-e376-4676-a20c-509b6170b6f2","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"keyword","value":"NEWS","type":"text"},{"key":"reference","value":"Gym news","type":"text"},{"key":"number","value":"61418279031","type":"text"},{"key":"status","value":"active","type":"text"},{"key":"billing_date","value":"2020-06-26","type":"text"},{"key":"welcome_message","value":"Welcome to Fitness gym news","type":"text"},{"key":"members_message","value":"Thanks for your continued support","type":"text"},{"key":"forward_url","value":"http://example.com/gym-promo","type":"text"},{"key":"forward_email","value":"news@example.com,mike@example.com","type":"text"},{"key":"forward_sms","value":"61491570157,61491570158","type":"text"}]},"url":"https://api.transmitsms.com/edit-keyword.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 11:04:26 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <keyword>NEWS</keyword>\n    <reference>Gym news</reference>\n    <number>61418279031</number>\n    <list_id>4214634</list_id>\n    <welcome_message>Welcome to Fitness gym news</welcome_message>\n    <member_message>Thanks for your continued support</member_message>\n    <forward_url>http://example.com/gym-promo</forward_url>\n    <forward_sms>61491570157,61491570158</forward_sms>\n    <forward_email>news@example.com,mike@example.com</forward_email>\n    <status>open</status>\n    <billing_date>2020-07-24</billing_date>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"4464d2f1-3b9e-4e91-a060-b416a6c6e0db","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"keyword","value":"NEWS","type":"text"},{"key":"reference","value":"Gym news","type":"text"},{"key":"number","value":"61418279031","type":"text"},{"key":"status","value":"active","type":"text"},{"key":"billing_date","value":"2020-06-26","type":"text"},{"key":"welcome_message","value":"Welcome to Fitness gym news","type":"text"},{"key":"members_message","value":"Thanks for your continued support","type":"text"},{"key":"forward_url","value":"http://example.com/gym-promo","type":"text"},{"key":"forward_email","value":"news@example.com,mike@example.com","type":"text"},{"key":"forward_sms","value":"61491570157,61491570158","type":"text"}]},"url":"https://api.transmitsms.com/edit-keyword.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 11:04:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"keyword\": \"NEWS\",\n    \"reference\": \"Gym news\",\n    \"number\": 61418279031,\n    \"list_id\": 4214634,\n    \"welcome_message\": \"Welcome to Fitness gym news\",\n    \"member_message\": \"Thanks for your continued support\",\n    \"forward_url\": \"http://example.com/gym-promo\",\n    \"forward_sms\": \"61491570157,61491570158\",\n    \"forward_email\": \"news@example.com,mike@example.com\",\n    \"status\": \"open\",\n    \"billing_date\": \"2020-07-24\",\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"128f2ea3-40db-4f2a-b011-6ba5ebbc031d"},{"name":"Get Keywords","id":"ad1ea169-75ba-4dab-b7b6-17953090d8df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.transmitsms.com/get-keywords.json","description":"<p>Get a list of existing keywords.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<table><thead><tr><th>PARAMETER</th><th>TYPE</th><th>DESCRIPTION</th><th>REQUIRED</th></tr></thead><tbody><tr><td><strong>number</strong></td><td>integer</td><td>Filter the list by virtual number</td><td>NO</td></tr><tr><td><strong>page</strong></td><td>integer</td><td><strong>Page number, for pagination</strong></td><td>NO</td></tr><tr><td><strong>max</strong></td><td>integer</td><td><p><strong>Maximum results returned per page</strong></p></td><td>NO</td></tr></tbody></table>","urlObject":{"protocol":"https","path":["get-keywords.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"722dfb41-b5aa-477d-b499-9d1bf5edc60b","name":"Example 2","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"application/xml","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"61418279031","type":"text"}]},"url":"https://api.transmitsms.com/get-keywords.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 11:00:59 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <page>\n        <count>1</count>\n        <number>1</number>\n    </page>\n    <keywords_total>2</keywords_total>\n    <keywords>\n        <item>\n            <keyword>GYM</keyword>\n            <reference>Gym news</reference>\n            <number>61418279031</number>\n            <list_id>4214637</list_id>\n            <welcome_message>Welcome to Mike's gym news</welcome_message>\n            <member_message>Thanks for your continued support</member_message>\n            <forward_url>http://example.com/gym-promo</forward_url>\n            <forward_sms>61491570157,61491570158</forward_sms>\n            <forward_email>news@example.com,mike@example.com</forward_email>\n            <status>open</status>\n            <billing_date>2020-07-24</billing_date>\n        </item>\n        <item>\n            <keyword>NEWS</keyword>\n            <reference>Gym news</reference>\n            <number>61418279031</number>\n            <list_id>4214634</list_id>\n            <welcome_message>Welcome to Mike's gym news</welcome_message>\n            <member_message>Thanks for your continued support</member_message>\n            <forward_url>http://example.com/gym-promo</forward_url>\n            <forward_sms>61491570157,61491570158</forward_sms>\n            <forward_email>news@example.com,mike@example.com</forward_email>\n            <status>open</status>\n            <billing_date>2020-07-24</billing_date>\n        </item>\n    </keywords>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"},{"id":"9cb5e7bb-e789-4125-9acd-956d31adfb12","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"61418279031","type":"text"}]},"url":"https://api.transmitsms.com/get-keywords.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 11:00:23 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"page\": {\n        \"count\": 1,\n        \"number\": 1\n    },\n    \"keywords_total\": 2,\n    \"keywords\": [\n        {\n            \"keyword\": \"GYM\",\n            \"reference\": \"Gym news\",\n            \"number\": 61418279031,\n            \"list_id\": 4214637,\n            \"welcome_message\": \"Welcome to Mike's gym news\",\n            \"member_message\": \"Thanks for your continued support\",\n            \"forward_url\": \"http://example.com/gym-promo\",\n            \"forward_sms\": \"61491570157,61491570158\",\n            \"forward_email\": \"news@example.com,mike@example.com\",\n            \"status\": \"open\",\n            \"billing_date\": \"2020-07-24\"\n        },\n        {\n            \"keyword\": \"NEWS\",\n            \"reference\": \"Gym news\",\n            \"number\": 61418279031,\n            \"list_id\": 4214634,\n            \"welcome_message\": \"Welcome to Mike's gym news\",\n            \"member_message\": \"Thanks for your continued support\",\n            \"forward_url\": \"http://example.com/gym-promo\",\n            \"forward_sms\": \"61491570157,61491570158\",\n            \"forward_email\": \"news@example.com,mike@example.com\",\n            \"status\": \"open\",\n            \"billing_date\": \"2020-07-24\"\n        }\n    ],\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"}],"_postman_id":"ad1ea169-75ba-4dab-b7b6-17953090d8df"}],"id":"96325783-0fe3-49f5-b440-8aaff1c67abe","description":"<p>Add a keyword to an existing virtual number</p>\n","event":[{"listen":"prerequest","script":{"id":"ea68eb90-2e08-4e32-a055-e25890c32355","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4fcea8b2-8fb0-4216-b510-bd7eb5f0f7db","type":"text/javascript","exec":[""]}}],"_postman_id":"96325783-0fe3-49f5-b440-8aaff1c67abe"},{"name":"Account","item":[{"name":"Get Balance","id":"0b57abf4-b2a7-4391-a147-f546682913b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.transmitsms.com/get-balance.json","description":"<h1 id=\"account-info\">Account Info</h1>\n","urlObject":{"protocol":"https","path":["get-balance.json"],"host":["api","transmitsms","com"],"query":[],"variable":[]}},"response":[{"id":"122c2b43-b9cc-44bf-8f61-8b806e7bdd5e","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"https://api.transmitsms.com/get-balance.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 11:05:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"balance\": 73.954,\n    \"currency\": \"AUD\",\n    \"error\": {\n        \"code\": \"SUCCESS\",\n        \"description\": \"OK\"\n    }\n}"},{"id":"c2c7328e-1d3a-461f-acb4-ace74b1eccb6","name":"Example 2","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/xml","type":"text"}],"url":"https://api.transmitsms.com/get-balance.xml"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 24 Jun 2020 11:06:44 GMT"},{"key":"Content-Type","value":"text/xml; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.2"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"X-Mashape-Billing","value":"Queries=1"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<response>\n    <balance>73.954</balance>\n    <currency>AUD</currency>\n    <error>\n        <code>SUCCESS</code>\n        <description>OK</description>\n    </error>\n</response>"}],"_postman_id":"0b57abf4-b2a7-4391-a147-f546682913b1"}],"id":"05c0514b-89a6-41c2-9f6a-070e12622254","description":"<p>Get a summary of your account balance</p>\n","event":[{"listen":"prerequest","script":{"id":"8211c45f-665c-4e80-9968-5e40b746c5ae","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bf2fc222-68be-4fc1-bb97-8586556bc540","type":"text/javascript","exec":[""]}}],"_postman_id":"05c0514b-89a6-41c2-9f6a-070e12622254"}],"event":[{"listen":"prerequest","script":{"id":"d51eb3b0-e097-405d-9a9f-1dfedf80365d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bc2388d3-6a94-4c05-91c8-9cfd27b9b8d9","type":"text/javascript","exec":[""]}}]}