{"info":{"_postman_id":"7795653d-6b26-44f7-a3a1-e55fef87b374","name":"Dinama/Mobisa Message Integration API (send/receive SMS Text Messages)","description":"<html><head></head><body><p>Documentation for Dinama/Mobisa SMS</p>\n<blockquote>\n<p><a href=\"https://documenter.getpostman.com/view/3895335/2s8YzMXkQa\">Ver versión en &lt;strong&gt;Español&lt;/strong&gt;</a></p>\n</blockquote>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"3895335","collectionId":"7795653d-6b26-44f7-a3a1-e55fef87b374","publishedId":"S1EQSxoS","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-02-21T20:27:23.000Z"},"item":[{"name":"JSon Integration (Recommended)","id":"9471fbb1-71de-4ea0-a606-b19baa7db587","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json","description":"<p>Content Type of the message format. Always application/json</p>\n"},{"key":"x-api-key","value":"TaluCLg2Ri9JovkeVtKZS9feS82SaneG66y64eOF","description":"<p>API Key asigned by Dinama/Mobisa in order to access the service</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"notify\",\n    \"serviceSID\": \"VE-Practipush\",\n    \"recipient\": \"584100000000\",\n    \"message\": \"Prueba de Envio\"\n}"},"url":"https://api.dinama.com/services/messages?countryCod=<countryCode>","description":"<h1 id=\"sendreceive-sms-notifications-using-dinamamobisa-json-format\">Send/Receive SMS notifications using Dinama/Mobisa JSON format</h1>\n<h2 id=\"use-cases\">Use Cases:</h2>\n<h3 id=\"1-send-a-notification-to-a-mobile-phone-number\">1) Send a notification to a mobile phone number:</h3>\n<p><strong>Client request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n \"type\":\"notify\",\n \"serviceSID\":\"&lt;Value provided by Dinama/Mobisa&gt;\",\n \"recipient\":\"&lt;hone number that will receive the notification in international format&gt;\",\n \"message\":\"&lt;Text to send&gt;\",\n \"messageId\":\"&lt;(optional) Unique message Id, used when delivery status is requested&gt;\", \n \"transactionId\":\"&lt;(optional) Transaction ID&gt;\",\n \"memo\":\"&lt;(optional) Category for reports purposes&gt;\",\n \"sendDate\":\"&lt;(optional) Date/Time (format yyyymmddHHMMss) when the message must be sent \n                        (default: now)&gt;\",\n \"requestDeliveryStatus\":\"&lt;(optional) true:To request delivery status,\n                                      false:delivery status not requested\n                                     (default false)&gt;\",\n \"allowConcat\": &lt; true: To authorize send concatenated messages with or without UCS2(UTF16) encoding \n                        required for long text messages and correct delivery of accent letters and emoticons\n                        * View Terms and Conditions that apply when the value is true (section 7)\n                  false: Cut message to 160 characters, accent letters and emoticons won't be displayed\n                         in the phone \n                 (default: false)\n                &gt;\n}\n\n</code></pre>\n<p><strong>Dinama/Mobisa response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\":\"ack\",\n  \"errorCode\":&lt;Processing/invocation status response\n              (0: request processed, \n               Other: Request failed)&gt;,\n  \"errorDescription\":\"&lt;Error description message&gt;\"\n}\n</code></pre>\n<h3 id=\"2-send-a-notifications-to-multiple-phone-numbers-batch-\">2) Send a notifications to multiple phone numbers (batch) :</h3>\n<p><strong>Send multiple notification messages with one api call</strong><br /></p>\n<blockquote>\n<p><strong>Restrictions:</strong><br />\nMaximum JSON payload size: 6 MB<br />\nMaximum number of notifications that can be sent per invocation: 10,000</p>\n</blockquote>\n<p><strong>Client request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n \"type\":\"notifyBatch\",\n \"serviceSID\":\"&lt;Value provided by Dinama/Mobisa&gt;\",\n \"messages\": [\n              {\"recipient\":\"&lt;Phone number that will receive the notification in international format&gt;\",\n               \"message\":\"&lt;Message to send&gt;\",\n               \"messageId\":\"&lt;(optional) Unique message Id, used when delivery status is requested&gt;\", \n              }, \n\n               ...\n              {\"recipient\":\"&lt;Phone number that will receive the notification in international format&gt;\",\n               \"message\":\"&lt;Message to send&gt;\",\n               \"messageId\":\"&lt;(optional) Unique message Id, used when delivery status is requested&gt;\", \n              }\n             ],                 \n \"transactionId\":\"&lt;(optional) Transaction ID&gt;\",\n \"memo\":\"&lt;(optional) Category for reports purposes&gt;\",\n \"sendDate\":\"&lt;(optional) Date/Time (format yyyymmddHHMMss) when the message must be sent \n                        (default: now)&gt;\",\n \"requestDeliveryStatus\":\"&lt;(optional) true:To request delivery status,\n                                      false:delivery status not requested\n                                     (default false)&gt;\",\n \"allowConcat\": &lt; true: To authorize send concatenated messages with or without UCS2(UTF16) encoding \n                        required for long text messages and correct delivery of accent letters and emoticons\n                        * View Terms and Conditions that apply when the value is true (section 7)\n                  false: Cut message to 160 characters, accent letters and emoticons won't be displayed\n                         in the phone \n                 (default: false)\n                &gt;\n}\n</code></pre>\n<p><strong>Dinama/Mobisa response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\":\"ack\",\n  \"errorCode\":&lt;Processing/invocation status response\n              (0: request processed, \n               Other: Request failed)&gt;,\n  \"errorDescription\":\"&lt;Error description message&gt;\"\n}\n</code></pre>\n<h3 id=\"3-receive-a-message-sent-from-the-user\">3) Receive a message sent from the user:</h3>\n<p><strong>Dinama/Mobisa calls the URL defined by the Client:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n \"type\":\"request\", \n \"serviceSID\":\"&lt;Value provided by Dinama/Mobisa&gt;\",\n \"sender\":\"&lt;Sender Phone number in international format&gt;\",\n \"message\":\"&lt;Message sent by the mobile&gt;\",\n \"transactionId\":\"&lt;(optional) Transaction ID&gt;\",\n}\n</code></pre>\n<p><strong>Client response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\":\"ack\",\n  \"errorCode\": &lt;Processing/invocation status response \n               (0: request processed successfully, \n                Other number: request failed)\n               (see section 6. Error codes)&gt;,\n    \"errorDescription\":\"&lt;Error description message&gt;\"\n}\n</code></pre>\n<h3 id=\"4-send-the-response-to-a-message-sent-by-the-user\">4) Send the response to a message sent by the user:</h3>\n<p><strong>Client request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\":\"response\", \n  \"serviceSID\":\"&lt;Value provided by Dinama/Mobisa&gt;\",\n  \"recipient\":\"&lt;Phone number that will receive the notification in international format&gt;\",\n  \"message\":\"&lt;Message to send&gt;\",\n  \"messageId\":\"&lt;(optional) Unique message Id, used when delivery status is requested&gt;\",\n  \"transactionId\":\"&lt;(optional) Transaction ID&gt;\", \n  \"memo\":\"&lt;(optional) Category for reports purposes&gt;\",\n  \"requestDeliveryStatus\":\"&lt;(optional) true:To request delivery status,\n                                      false:delivery status not requested\n                                     (default false)&gt;\",\n \"allowConcat\": &lt; true: To authorize send concatenated messages with or without UCS2(UTF16) encoding \n                        required for long text messages and correct delivery of accent letters and emoticons\n                        * View Terms and Conditions that apply when the value is true (section 7)\n                  false: Cut message to 160 characters, accent letters and emoticons won't be displayed\n                         in the phone \n                 (default: false)\n                &gt;\n}\n</code></pre>\n<p><strong>Dinama/Mobisa response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\":\"ack\",\n  \"errorCode\": &lt;Processing/invocation status response \n               (0: request processed successfully, \n                Other number: request failed)\n               (see section 6. Error codes)&gt;,\n    \"errorDescription\":\"&lt;Error description message&gt;\"\n}\n</code></pre>\n<h3 id=\"5-delivery-receipt-arrives\">5) Delivery receipt arrives:</h3>\n<p><strong>Dinama/Mobisa calls the URL defined by the Client:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n \"type\":\"receipt\", \n \"serviceSID\":\"&lt;Value provided by Dinama/Mobisa&gt;\",\n \"recipient\":\"&lt;Phone number that will receive the notification in international format&gt;\",\n \"messageId\":\"&lt;Unique message Id, associated with this delivery status&gt;\", \n \"statusCode\":&lt;Delivery Status Cod \n               (10: Message received by the user, \n                100: Message not sent)&gt;, \n \"statusDescription\":\"&lt;Delivery status Descripion&gt;\"\n}\n</code></pre>\n<p><strong>Client response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\":\"ack\",\n  \"errorCode\": &lt;Processing/invocation status response \n               (0: request processed successfully, \n                Other number: request failed)\n               (see section 6. Error codes)&gt;,\n    \"errorDescription\":\"&lt;Error description message&gt;\"\n}\n</code></pre>\n<h3 id=\"6-error-codes-for-response-messages\">6) Error codes for response messages:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>0: No Error, message queued for delivery\n1: Invalid serviceSID\n2: Not authorized \n3: Transaction Time out \n4: Missing information\n100: Invalid JSON format\n101: General error\n</code></pre><h3 id=\"7-terms-and-condition-when-allowconcat-value-is-true\">7) Terms and Condition (<em>when allowConcat value is true</em>):</h3>\n<blockquote>\n<p><em><strong>Definitions:</strong></em> </p>\n<ul>\n<li><em>Notification:</em> Content to be sent to each cell phone through text messages.</li>\n<li><em>Message:</em> Each of the segments necessary to send the notification. Under normal conditions, a notification is equivalent to a text message</li>\n</ul>\n<p>In the event that the notification exceeds 160 characters, Dinama will segment the messages automatically. For this, it must include special parameters within the message so that it is reassembled as a single message in the subscriber's mobile.\nBy including these special parameters, each segment of the message can contain up to 153 characters.\nIn the same way, if the message contains one or more special characters (such as accented letters or the letter ñ or emoticons), the encoding of the message changes and each message and/or segment can contain up to 67 characters.\nFor all of the above, by accepting these terms and conditions, you agree that:\"</p>\n<ul>\n<li>Dinama sends as many messages or segments as necessary to deliver the unified message to the subscriber.</li>\n<li>The carrier and Dinama charge for each message sent. In this way, if the notification length  is longer than 160 characters and/or it has special characters, the defined message must be segmented into multiple parts, the carrier and Dinama will charge for each of the dispatched parts (segments)</li>\n</ul>\n</blockquote>\n<h3 id=\"8-query-users-who-do-not-wish-to-receive-notifications-opt-out-if-opt-out-functionality-is-enabled\">8) Query users who do not wish to receive notifications (opt-out) (<em>if <code>opt-out functionality</code> is enabled</em>):</h3>\n<p>End-point: <strong>.../messages/getOptOut?countryCod=&lt;country&gt;</strong></p>\n<p>This API allows querying users who have requested not to receive notifications within a specified date range.</p>\n<p>Restrictions for this API:</p>\n<blockquote>\n<ul>\n<li>Maximum search range: 15 days</li>\n<li>Maximum number of users that can be returned in a single invocation: 15,000</li>\n</ul>\n</blockquote>\n<p><strong>Client request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"getOptOut\",\n  \"serviceSID\": \"&lt;Information provided by Dinama/Mobisa&gt;\",\n  \"startDate\": \"&lt;Start date/time (format yyyymmddHHMMss) \n                for the search range&gt;\",\n  \"endDate\": \"&lt;End date/time (format yyyymmddHHMMss) \n              for the search range (endDate - startDate &lt;= 15 days)&gt;\"\n}\n</code></pre>\n<p><strong>Dinama/Mobisa response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"getOptOutResp\",\n  \"serviceSID\": \"&lt;Information provided by Dinama/Mobisa&gt;\",\n  \"optOuts\": [\n    {\n      \"user\": \"&lt;Phone number in international format&gt;\",\n      \"optOutDate\": \"&lt;Date/time (format yyyymmddHHMMss) \n                      of the opt-out&gt;\",\n      \"message\": \"&lt;Sent message that triggered the opt-out&gt;\"\n    },\n                      ...\n    {\n      \"user\": \"&lt;Phone number in international format&gt;\",\n      \"optOutDate\": \"&lt;Date/time (format yyyymmddHHMMss) \n                      of the opt-out&gt;\",\n      \"message\": \"&lt;Sent message that triggered the opt-out&gt;\"\n    }\n  ],\n  \"total\": &lt;Number of users found&gt;,\n  \"errorCode\": &lt;Processing/invocation status response \n               (0: request processed successfully, \n                Other number: request failed)\n               (see section 6. Error codes)&gt;,\n  \"errorDescription\": \"&lt;Message with the description of the error code&gt;\"\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["services","messages"],"host":["api","dinama","com"],"query":[{"description":{"content":"<p>Two letter ISO name of the country where the messages are going to be delivered: Options: EC: Ecuador, PR: Puerto Rico, VE: Venezuela</p>\n","type":"text/plain"},"key":"countryCod","value":"<countryCode>"},{"disabled":true,"description":{"content":"<p>Always json</p>\n","type":"text/plain"},"key":"messageFormat","value":"json"}],"variable":[]}},"response":[{"id":"2d848b32-0937-40b1-a6c1-668ddd6feb2f","name":"JSon Integration - Send Notification","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"x-api-key","value":"TaluCLg2Ri9JovkeVtKZS9feS82SaneG66y64eOF","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"notify\",\n    \"serviceSID\": \"VE-Practipush\",\n    \"recipient\": \"584100000000\",\n    \"message\": \"Prueba de Envio\",\n    \"messageId\": \"ID1234\",\n    \"requestDeliveryStatus\": false\n}"},"url":{"raw":"https://api.dinama.com/services/messages?countryCod=ve","protocol":"https","host":["api","dinama","com"],"path":["services","messages"],"query":[{"key":"countryCod","value":"ve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 30 Jul 2019 14:31:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"ab2561b3-b2d6-11e9-aba6-79e0eaafa601"},{"key":"x-amz-apigw-id","value":"dpIqzHkYIAMFxMA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-5d4054ab-f5b32bd535410aceceed1d09"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"ack\",\n    \"errorCode\": 0,\n    \"errorDescription\": \"OK\"\n}"}],"_postman_id":"9471fbb1-71de-4ea0-a606-b19baa7db587"},{"name":"XML1 Integration (Legacy/Obsolete)","id":"b538ee39-5c66-44e6-b5c7-a724ebd70422","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"text/xml","description":"<p>Content Type of the message format. Always text/xml</p>\n","type":"text"},{"key":"x-api-key","value":"TaluCLg2Ri9JovkeVtKZS9feS82SaneG66y64eOF","description":"<p>API Key asigned by Dinama/Mobisa in order to access the service</p>\n","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n<push-request>\n    <service-id>VE-Practipush</service-id>\n    <user>581111111111</user>\n    <text>Prueba Envio</text>\n</push-request>"},"url":"https://api.dinama.com/services/messages?countryCod=ve&messageFormat=xml1","description":"<h1 id=\"sendreceive-sms-notifications-using-dinamamobisa-xml1-format\">Send/Receive SMS notifications using Dinama/Mobisa XML1 format</h1>\n<h2 id=\"use-cases\">Use Cases:</h2>\n<h3 id=\"1-send-a-sms-notification\">1) Send a SMS notification:</h3>\n<p><strong>Client request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\"> &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n &lt;push-request&gt;\n    &lt;service-id&gt;Value provided by Dinama/Mobisa&lt;/service-id&gt;\n    &lt;user&gt;Phone number international format (without + sign)&lt;/user&gt;\n    &lt;text&gt;Text to send&lt;/text&gt;\n    &lt;category&gt;(optional) Category for reports purposes&lt;/category&gt;\n    &lt;transaction-id&gt;(optional) Transaction ID&lt;/transaction-id&gt;\n    &lt;delivery-receipt&gt;(optional) 1 To request delivery status, 0 delivery status not requested (default 0)&lt;/delivery-receipt&gt;\n    &lt;allow-concat&gt;1: To authorize send concatenated messages with or without UCS2(UTF16) encoding when needed \n                  0: Cut message to 160 characters and don't use UCS2(UTF16) encoding (default: 0)\n                  * View Terms and Conditions\n    &lt;/allow-concat&gt;\n    &lt;message-id&gt;(optional) Unique message Id, used when delivery status is requested&lt;/message-id&gt;\n    &lt;send-date&gt;(optional) Date/Time (format yyyymmddHHMMss) when the message must be sent (default: now)&lt;/send-date&gt;\n  &lt;/push-request&gt;\n</code></pre>\n<p><strong>Dinama/Mobisa response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">  &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n  &lt;push-response&gt;\n    &lt;status&gt;Processing status (0: request processed, Other: Request failed )&lt;/status&gt;\n    &lt;infor&gt;Status description message&lt;/infor&gt;\n  &lt;/push-response&gt;\n</code></pre>\n<h3 id=\"2-receive-a-message-sent-from-a-subscriber\">2) Receive a message sent from a subscriber:</h3>\n<p><strong>Dinama/Mobisa request (call to the URL defined by the Client):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">  &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n  &lt;submit-request&gt;\n    &lt;service-id&gt;Value provided by Dinama/Mobisa&lt;/service-id&gt;\n    &lt;user&gt;Phone number international format (without + sign)&lt;/user&gt;\n    &lt;text&gt;Text sent by the user&lt;/text&gt;\n    &lt;message-id&gt;(optional) Unique message Id, used when delivery status is requested&lt;/message-id&gt;\n  &lt;/submit-request&gt;\n</code></pre>\n<p><strong>Client Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\"> &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n  &lt;submit-response&gt;\n    &lt;status&gt;Processing status (0: request processed, Other: Request failed )&lt;/status&gt;\n    &lt;infor&gt;Status description message&lt;/infor&gt;\n  &lt;/submit-response&gt;\n</code></pre>\n<h3 id=\"3-send-the-response-to-a-message-sent-by-the-user\">3) Send the response to a message sent by the user:</h3>\n<p><strong>Client request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">  &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n  &lt;deliver-request&gt;\n    &lt;service-id&gt;Value provided by Dinama/Mobisa&lt;/service-id&gt;\n    &lt;user&gt;Phone number international format (without + sign)&lt;/user&gt;\n    &lt;text&gt;Text to send&lt;/text&gt;\n    &lt;transaction-id&gt;(optional) Transaction ID&lt;/transaction-id&gt;\n    &lt;delivery-receipt&gt;(optional) 1 To request delivery status, 0 delivery status not requested (default 0)&lt;/delivery-receipt&gt;\n    &lt;allow-concat&gt;1: To authorize send concatenated messages with or without UCS2(UTF16) encoding when needed \n                  0: Cut message to 160 characters and don't use UCS2(UTF16) encoding (default: 0)\n                  * View Terms and Conditions\n    &lt;/allow-concat&gt;\n    &lt;message-id&gt;(optional) Unique message Id, used when delivery status is requested&lt;/message-id&gt;\n  &lt;/deliver-request&gt;\n</code></pre>\n<p><strong>Dinama/Mobisa Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">  &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n  &lt;deliver-response&gt;\n    &lt;status&gt;Processing status (0: request processed, Other: Request failed )&lt;/status&gt;\n    &lt;infor&gt;Status description message&lt;/infor&gt;\n  &lt;/deliver-response&gt;\n</code></pre>\n<h3 id=\"4-delivery-receipt-arrives\">4) Delivery receipt arrives:</h3>\n<p><strong>Dinama/Mobisa request (call to the URL defined by the Client):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">  &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n  &lt;receipt-request&gt;\n    &lt;message-id&gt;Unique message Id, associated to this request&lt;/message-id&gt;\n    &lt;status-code&gt;Delivery Status Cod (10: Message received by the user, 100: Message not sent)&lt;/status-coder&gt;\n    &lt;status-description&gt;Delivery status Descripion&lt;/status-description&gt;\n  &lt;/receipt-request&gt;\n</code></pre>\n<p><strong>Client response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-xml\">  &lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\n  &lt;receipt-response&gt;\n    &lt;status&gt;Processing status (0: request processed, Other: Request failed )&lt;/status&gt;\n    &lt;infor&gt;Status description message&lt;/infor&gt;\n  &lt;/receipt-response&gt;\n</code></pre>\n<h3 id=\"5-error-codes-for-response-messages\">5) Error codes for response messages:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>   0: No Error, message queued for delivery\n   1: Invalid serviceSID\n   2: Not authorized \n   3: Transaction Time out \n   4: Missing information\n   100: Invalid XML format\n   101: General error  \n</code></pre><h3 id=\"terms-and-condition-if-allow-concat-is-1\">Terms and Condition (If allow-concat is 1):</h3>\n<blockquote>\n<p><em><strong>Definitions:</strong></em> </p>\n<ul>\n<li><em>Notification:</em> Content to be sent to each cell phone through text messages.</li>\n<li><em>Message:</em> Each of the segments necessary to send the notification. Under normal conditions, a notification is equivalent to a text message</li>\n</ul>\n<p>In the event that the notification exceeds 160 characters, Dinama will segment the messages automatically. For this, it must include special parameters within the message so that it is reassembled as a single message in the subscriber's mobile.\nBy including these special parameters, each segment of the message can contain up to 153 characters.\nIn the same way, if the message contains one or more special characters (such as accented letters or the letter ñ or emoticons), the encoding of the message changes and each message and/or segment can contain up to 67 characters.\nFor all of the above, by accepting these terms and conditions, you agree that:\"</p>\n<ul>\n<li>Dinama sends as many messages or segments as necessary to deliver the unified message to the subscriber.</li>\n<li>The carrier and Dinama charge for each message sent. In this way, if the notification length  is longer than 160 characters and/or it has special characters, the defined message must be segmented into multiple parts, the carrier and Dinama will charge for each of the dispatched parts (segments)</li>\n</ul>\n</blockquote>\n","urlObject":{"protocol":"https","path":["services","messages"],"host":["api","dinama","com"],"query":[{"description":{"content":"<p>Two letter ISO name of the country where the messages are going to be delivered: Options: EC: Ecuador, PR: Puerto Rico, VE: Venezuela</p>\n","type":"text/plain"},"key":"countryCod","value":"ve"},{"description":{"content":"<p>Always xml1</p>\n","type":"text/plain"},"key":"messageFormat","value":"xml1"}],"variable":[]}},"response":[{"id":"0013ef1d-1911-45aa-b9d5-63d938546168","name":"XML1 Integration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/xml","type":"text"},{"key":"x-api-key","value":"TaluCLg2Ri9JovkeVtKZS9feS82SaneG66y64eOF","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n<push-request>\n    <service-id>VE-Practipush</service-id>\n    <user>581111111111</user>\n    <text>Prueba Envio</text>\n</push-request>","options":{"raw":{"language":"xml"}}},"url":{"raw":"https://api.dinama.com/services/messages?countryCod=ve&messageFormat=xml1","protocol":"https","host":["api","dinama","com"],"path":["services","messages"],"query":[{"key":"countryCod","value":"ve"},{"key":"messageFormat","value":"xml1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 30 Jul 2019 14:43:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"110"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"74c8d732-b2d8-11e9-8499-b95a1218962a"},{"key":"x-amz-apigw-id","value":"dpKixG8poAMF1aA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-5d4057ab-2eda6df498bae5b907aba629"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n<push-response>\n    <status>0</status>\n    <infor>OK</infor>\n</push-response>"}],"_postman_id":"b538ee39-5c66-44e6-b5c7-a724ebd70422"}],"event":[{"listen":"prerequest","script":{"id":"ff24dcf5-8fe4-4749-9b6a-366c5c681370","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bb513b3e-4d1f-4fda-83d2-5422a5263734","type":"text/javascript","exec":[""]}}]}