{"info":{"_postman_id":"585c4ec7-1bed-4297-b6f5-257283d33756","name":"Chatalo API Documentation","description":"<html><head></head><body><p>Welcome to the Wapro API Documentation<br>Following are some of the prerequisites for using the Wapro API<br><strong>Steps to get started:</strong></p>\n<ul>\n<li><p>Base API URL: <a href=\"https://chatalo.com/api/v1\">https://chatalo.com/api/v1</a></p>\n</li>\n<li><p>You can get the API Key from the Member Area <strong>Integration &gt; API Key &amp; Apps</strong></p>\n</li>\n<li><p>Sending data using JSON format</p>\n</li>\n</ul>\n<h4 id=\"response-code\">Response Code</h4>\n<p><strong>200</strong> Success</p>\n<p><strong>403</strong> Unauthorized</p>\n<p><strong>400</strong> Invalid Fields or Inputs</p>\n<p><strong>500</strong> Fatal Error</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"42642619","collectionId":"585c4ec7-1bed-4297-b6f5-257283d33756","publishedId":"2sAYdfpB6t","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"7742EF"},"publishDate":"2025-02-26T14:36:19.000Z"},"item":[{"name":"Profile","item":[{"name":"Get Profile","id":"15d1afe7-ed1e-4162-b76e-86a4df37ebdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/profile","description":"<p>The endpoint <strong>profile</strong> is useful for checking the status of your API Key, Profile Details related to the API Key and a list of connected devices and their status. The device can be used when the status shows <code>AUTHENTICATED</code> status. Other statuses are <code>AUTHENTICATED</code>, <code>CONNECTED</code>, <code>CONNECTING</code>, <code>DISCONNECTED</code>, <code>DISCONNECTING</code>.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/profile',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'GET',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["profile"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"132c8501-b83b-4691-97c6-34490a50343e","name":"Get Profile","originalRequest":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 20 Jul 2023 07:53:29 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"first_name\": \"Trimun\",\n        \"last_name\": \"Su\",\n        \"email\": \"demo@gmail.com\",\n        \"expires_on\": \"20 Jul 2023, 09:50 am (10 days remaining)\",\n        \"plan\": \"Premium\",\n        \"assigned_devices\": [\n            {\n                \"id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n                \"name\": \"Andi - CS\",\n                \"whatsapp_number\": \"628517663xxxx\",\n                \"status\": \"AUTHENTICATED\"\n            },\n            {\n                \"id\": \"5333e99a-ed4e-40ab-8dfc-xxxxxxxxxxxx\",\n                \"name\": \"Dita - CS\",\n                \"whatsapp_number\": \"628897909xxxx\",\n                \"status\": \"DISCONNECTED\"\n            }\n        ]\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"15d1afe7-ed1e-4162-b76e-86a4df37ebdd"},{"name":"Get Logs","id":"6c9749a9-4e55-402a-8bd3-4fbca4fde435","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/profile/logs?page=1&limit=15","description":"<p>Get all the history of changes and actions performed by the user.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Query parameters\n$query_params = array(\n    'page' =&gt; 1,\n    'limit' =&gt; 15,\n    'action' =&gt; '',\n    'ip' =&gt; '',\n    'date_from' =&gt; '',\n    'date_to' =&gt; '',\n);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/profile/logs?' . http_build_query($query_params),\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'GET',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["profile","logs"],"host":["https://chatalo.com/api/v1"],"query":[{"description":{"content":"<p>Numeric</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Numeric, default is 15</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"disabled":true,"description":{"content":"<p>Keyword that maybe contain in action</p>\n","type":"text/plain"},"key":"action","value":""},{"disabled":true,"description":{"content":"<p>IP address</p>\n","type":"text/plain"},"key":"ip","value":""},{"disabled":true,"description":{"content":"<p>Date with format Y-m-d H:i</p>\n","type":"text/plain"},"key":"date_from","value":""},{"disabled":true,"description":{"content":"<p>Date with format Y-m-d H:i</p>\n","type":"text/plain"},"key":"date_to","value":""}],"variable":[]}},"response":[{"id":"41bfcca3-2e62-4130-89aa-bd2e8f0e9989","name":"Get Logs","originalRequest":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":{"raw":"https://chatalo.com/api/v1/profile/logs?page=1&limit=15","host":["https://chatalo.com/api/v1"],"path":["profile","logs"],"query":[{"key":"page","value":"1","description":"Numeric"},{"key":"action","value":"","description":"Keyword that maybe contain in action","disabled":true},{"key":"ip","value":null,"description":"IP address","disabled":true},{"key":"date_from","value":null,"description":"Date with format Y-m-d H:i","disabled":true},{"key":"date_to","value":null,"description":"Date with format Y-m-d H:i","disabled":true},{"key":"limit","value":"15"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 20 Jul 2023 10:18:43 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"b99bc973-95ce-4a55-868f-17b6ff785dbf\",\n            \"date\": \"20 Jul 2023, 11:35:04 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"89c863e7-c91c-49f4-9d5c-ed278ff5927a\",\n            \"date\": \"20 Jul 2023, 11:35:01 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"fc6be61a-02dd-4932-ae94-37461a43e89e\",\n            \"date\": \"20 Jul 2023, 11:34:20 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"14d29812-fb57-4ef0-98d5-a8b852b7901e\",\n            \"date\": \"20 Jul 2023, 11:33:57 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"36c2b414-2062-4a38-bd69-2e341531f0d9\",\n            \"date\": \"20 Jul 2023, 11:33:48 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"f86972b3-8074-4c21-bcf4-bed0efbb84b5\",\n            \"date\": \"20 Jul 2023, 11:33:40 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"4983a765-6811-42e9-959e-399e871078a5\",\n            \"date\": \"20 Jul 2023, 11:32:50 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"96dadf12-dcdf-4454-9999-0848841b0bd7\",\n            \"date\": \"20 Jul 2023, 11:32:28 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"4878cd4d-422f-42df-81ee-6448e231d4c7\",\n            \"date\": \"20 Jul 2023, 11:32:06 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"147a0b93-34a9-45b0-af98-40ad96a53bef\",\n            \"date\": \"20 Jul 2023, 11:29:46 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"82f091e5-b22a-4668-bf5a-fb793cfa9509\",\n            \"date\": \"20 Jul 2023, 11:29:20 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"2b6c06e5-4e78-4232-a46a-5b1fe6604eb7\",\n            \"date\": \"20 Jul 2023, 11:29:18 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"32772c8e-aa2d-4c5a-bd39-e4ec06c815cf\",\n            \"date\": \"20 Jul 2023, 11:29:17 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"7be08f1c-6419-4dcd-aaa0-72f83d649aa1\",\n            \"date\": \"20 Jul 2023, 11:29:15 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        },\n        {\n            \"id\": \"9aa0884b-9557-4347-81af-b44d992bf55f\",\n            \"date\": \"20 Jul 2023, 11:28:48 am\",\n            \"action\": \"Update API Key\",\n            \"ip_address\": \"172.20.0.1\",\n            \"browser\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\",\n        \"pagination\": {\n            \"current_page\": 1,\n            \"total\": 749,\n            \"per_page\": 15,\n            \"last_page\": 50\n        }\n    }\n}"}],"_postman_id":"6c9749a9-4e55-402a-8bd3-4fbca4fde435"}],"id":"055f0d6b-b424-4c44-b8aa-095b032e11b4","_postman_id":"055f0d6b-b424-4c44-b8aa-095b032e11b4","description":""},{"name":"Device","item":[{"name":"Get Device","id":"c4b4d562-c028-4623-9b10-44875a9d567c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/device?page=1&limit&is_api=","description":"<p>This endpoint retrieves a list of all available devices or WhatsApp accounts along with their statuses. It provides information on whether API access is enabled (<code>is_api</code>) and displays the connection status of each device. A device can be used only if its status is <strong>AUTHENTICATED</strong> and <code>is_api</code> is <code>true</code>. Other statuses are <code>AUTHENTICATED</code>, <code>CONNECTED</code>, <code>CONNECTING</code>, <code>DISCONNECTED</code>, <code>DISCONNECTING</code>.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/device',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'GET',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["device"],"host":["https://chatalo.com/api/v1"],"query":[{"description":{"content":"<p>Numeric</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Numeric, default is 15</p>\n","type":"text/plain"},"key":"limit","value":null},{"description":{"content":"<p>Filter WhatsApp numbers that allow API access (1 = Allowed, 0 = Not Allowed)</p>\n","type":"text/plain"},"key":"is_api","value":""}],"variable":[]}},"response":[{"id":"ec3c914d-889c-4eab-81b1-fa683eb23105","name":"Get Device","originalRequest":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":{"raw":"https://chatalo.com/api/v1/device?page=1&limit&is_api=","host":["https://chatalo.com/api/v1"],"path":["device"],"query":[{"key":"page","value":"1","description":"Numeric"},{"key":"limit","value":null,"description":"Numeric, default is 15"},{"key":"is_api","value":"","description":"1 = True, 0 = False"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 26 Feb 2025 08:32:39 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n\n        {\n            \"id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n            \"name\": \"Andi - CS\",\n            \"whatsapp_number\": \"628517663xxxx\",\n            \"is_api\": true,\n            \"status\": \"AUTHENTICATED\"\n        },\n        {\n            \"id\": \"5333e99a-ed4e-40ab-8dfc-xxxxxxxxxxxx\",\n            \"name\": \"Dita - CS\",\n            \"whatsapp_number\": \"628897909xxxx\",\n            \"is_api\": true,\n            \"status\": \"DISCONNECTED\"\n        },\n        {\n            \"id\": \"716a5251-276b-4d3f-b882-xxxxxxxxxxxx\",\n            \"name\": \"Sela - CS\",\n            \"whatsapp_number\": \"628517163xxxx\",\n            \"is_api\": false,\n            \"status\": \"DISCONNECTED\"\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\",\n        \"pagination\": {\n            \"current_page\": 1,\n            \"total\": 2,\n            \"limit\": 15,\n            \"last_page\": 1\n        }\n    }\n}"}],"_postman_id":"c4b4d562-c028-4623-9b10-44875a9d567c"},{"name":"Add Device","id":"8c597b53-3ca1-4fc3-a1a5-2688b148afd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sela - CS\",\n    \"description\": \"\",\n    \"country_code\": \"62\",\n    \"number\": \"8517163xxxx\",\n    \"is_api\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/device","description":"<p>This endpoint registers a new device or WhatsApp account for integration. It allows you to configure device details such as name, description, country code, and phone number. Additionally, it specifies whether API access is enabled for the device.</p>\n<p>Request Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The display name of the device.</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>No</td>\n<td>Additional information about the device.</td>\n</tr>\n<tr>\n<td><code>country_code</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The country code of the phone number (e.g., <code>\"62\"</code> for Indonesia).</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The phone number without the country code.</td>\n</tr>\n<tr>\n<td><code>is_api</code></td>\n<td>int</td>\n<td>Yes</td>\n<td>Determines if API access is enabled (<code>1 = true</code>, <code>0 = false</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    \"name\" =&gt; \"Sela - CS\",\n    \"description\" =&gt; \"\",\n    \"country_code\" =&gt; \"62\",\n    \"number\" =&gt; \"8517163xxxx\",\n    \"is_api\" =&gt; 0\n);\n// Convert the array to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https://chatalo.com/api/v1/device/$deviceId\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["device"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e395f772-b1dd-4259-8a90-f2aba05f9d7e","name":"Add Device","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sela - CS\",\n    \"description\": \"\",\n    \"country_code\": \"62\",\n    \"number\": \"8517163xxxx\",\n    \"is_api\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/device"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 26 Feb 2025 09:11:58 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"5cc1ae6b-f263-4fbc-9855-xxxxxxxxxxxx\",\n        \"name\": \"Sela - CS\",\n        \"whatsapp_number\": \"628517163xxxx\",\n        \"description\": null,\n        \"is_api\": false,\n        \"status\": \"DISCONNECTED\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"8c597b53-3ca1-4fc3-a1a5-2688b148afd7"},{"name":"Detail Device","id":"faa88de0-2d9f-4fc7-b750-abd13c32c280","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/device/:deviceId","description":"<p>This endpoint retrieves detailed information about a specific device or WhatsApp account based on the provided <code>deviceId</code>. It returns device metadata, connection status, and whether API access is enabled.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Define the device ID\n$deviceId = '716a5251-276b-4d3f-b882-xxxxxxxxxxxx';\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https://chatalo.com/api/v1/device/$deviceId\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'GET',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["device",":deviceId"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[{"id":"1995ad76-22ff-45a4-9365-9397e0f3735c","type":"any","value":"716a5251-276b-4d3f-b882-xxxxxxxxxxxx","key":"deviceId"}]}},"response":[{"id":"28ea0ddf-fb57-4eeb-b2c1-35cce70d0307","name":"Detail Device","originalRequest":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sela - CS\",\n    \"description\": \"\",\n    \"country_code\": \"62\",\n    \"number\": \"8517163xxxx\",\n    \"is_api\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://chatalo.com/api/v1/device/:deviceId","host":["https://chatalo.com/api/v1"],"path":["device",":deviceId"],"variable":[{"key":"deviceId","value":"716a5251-276b-4d3f-b882-xxxxxxxxxxxx"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 26 Feb 2025 10:01:04 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"716a5251-276b-4d3f-b882-xxxxxxxxxxxx\",\n        \"name\": \"Sela - CS\",\n        \"whatsapp_number\": \"628517163xxxx\",\n        \"description\": null,\n        \"is_api\": true,\n        \"status\": \"DISCONNECTED\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"faa88de0-2d9f-4fc7-b750-abd13c32c280"},{"name":"Edit Device","id":"a209cc5a-1dab-4736-b8ae-c6130f0217d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sela - CSX\",\n    \"description\": \"\",\n    \"country_code\": \"62\",\n    \"number\": \"85171635322\",\n    \"is_api\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/device/:deviceId","description":"<p>This endpoint allows updating the details of an existing device or WhatsApp account. You can modify the device name, description, country code, phone number, and whether API access is enabled (<code>is_api</code>).</p>\n<p>Request Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The display name of the device.</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>No</td>\n<td>Additional information about the device.</td>\n</tr>\n<tr>\n<td><code>country_code</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The country code of the phone number (e.g., <code>\"62\"</code> for Indonesia).</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The phone number without the country code.</td>\n</tr>\n<tr>\n<td><code>is_api</code></td>\n<td>int</td>\n<td>Yes</td>\n<td>Determines if API access is enabled (<code>1 = true</code>, <code>0 = false</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    \"name\" =&gt; \"Sela - CS\",\n    \"description\" =&gt; \"\",\n    \"country_code\" =&gt; \"62\",\n    \"number\" =&gt; \"8517163xxxx\",\n    \"is_api\" =&gt; 0\n);\n// Convert the array to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https://chatalo.com/api/v1/device/$deviceId\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'PATCH',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["device",":deviceId"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[{"id":"a35c8b38-bd32-4580-bf7c-fadc25727482","type":"any","value":"716a5251-276b-4d3f-b882-fbfeac005600","key":"deviceId"}]}},"response":[{"id":"1a4f64f7-6bed-4532-926f-8f0b75748e43","name":"Edit Device","originalRequest":{"method":"PATCH","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sela - CS\",\n    \"description\": \"\",\n    \"country_code\": \"62\",\n    \"number\": \"85171635322\",\n    \"is_api\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://chatalo.com/api/v1/device/:deviceId","host":["https://chatalo.com/api/v1"],"path":["device",":deviceId"],"variable":[{"key":"deviceId","value":"716a5251-276b-4d3f-b882-xxxxxxxxxxxx"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 26 Feb 2025 09:58:19 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"716a5251-276b-4d3f-b882-xxxxxxxxxxxx\",\n        \"name\": \"Sela - CSR\",\n        \"whatsapp_number\": \"628517163xxxx\",\n        \"description\": null,\n        \"is_api\": true,\n        \"status\": \"DISCONNECTED\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"a209cc5a-1dab-4736-b8ae-c6130f0217d9"},{"name":"Connect WhatsApp (Generate QR)","id":"133cf95a-5056-427e-88b9-59e5ce7b7948","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/device/connect/:deviceId","description":"<p>This endpoint is used to initiate a WhatsApp connection for a specific device. It generates a QR code that must be scanned using the WhatsApp mobile app to establish a connection.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Define the device ID\n$deviceId = '716a5251-276b-4d3f-b882-xxxxxxxxxxxx';\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https://chatalo.com/api/v1/device/connect/$deviceId\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'GET',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["device","connect",":deviceId"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[{"id":"67a5ea59-60dd-4e43-a8ff-a47f8aa51734","type":"any","value":"","key":"deviceId"}]}},"response":[{"id":"dfbfcc10-e468-4df9-8689-d7cff9d74966","name":"Connect WhatsApp (Generate QR)","originalRequest":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":{"raw":"https://chatalo.com/api/v1/device/connect/:deviceId","host":["https://chatalo.com/api/v1"],"path":["device","connect",":deviceId"],"variable":[{"key":"deviceId","value":"5cc1ae6b-f263-4fbc-9855-xxxxxxxxxxxx"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 26 Feb 2025 09:19:53 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"qr\": \"data:image/png;base64,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\",\n        \"expires_at\": \"2025-02-26 16:20:53\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"133cf95a-5056-427e-88b9-59e5ce7b7948"},{"name":"Check WhatsApp Connection Status","id":"d6b2d95f-e19b-480b-ae91-6ccdf3726424","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/device/status/:deviceId","description":"<p>This endpoint allows you to check the connection status of a specific WhatsApp device. It returns the current status, indicating whether the device is connected (authenticated) or not.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Define the device ID\n$deviceId = '716a5251-276b-4d3f-b882-xxxxxxxxxxxx';\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https://chatalo.com/api/v1/device/status/$deviceId\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'GET',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["device","status",":deviceId"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[{"id":"d26c3120-4aeb-4f82-b3e0-6df76204f3c7","type":"any","value":"","key":"deviceId"}]}},"response":[{"id":"c6f59745-de21-4363-a55c-dc70d275ba61","name":"Check WhatsApp Connection Status","originalRequest":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":{"raw":"https://chatalo.com/api/v1/device/status/:deviceId","host":["https://chatalo.com/api/v1"],"path":["device","status",":deviceId"],"variable":[{"key":"deviceId","value":"5cc1ae6b-f263-4fbc-9855-xxxxxxxxxxxx"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 26 Feb 2025 09:25:17 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_authenticated\": false\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"d6b2d95f-e19b-480b-ae91-6ccdf3726424"},{"name":"Disconnect WhatsApp","id":"6adfe94b-fcc1-4f69-a262-25c87b6a1a6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/device/disconnect/:deviceId","description":"<p>This endpoint permanently deletes a specified device from the system. Once deleted, the device cannot be restored, and you will need to register a new one if needed.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Define the device ID\n$deviceId = '716a5251-276b-4d3f-b882-xxxxxxxxxxxx';\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https://chatalo.com/api/v1/device/disconnect/$deviceId\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'DELETE',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["device","disconnect",":deviceId"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[{"id":"94756433-8300-44f5-a4c8-9619475edaeb","type":"any","value":"","key":"deviceId"}]}},"response":[{"id":"bcbbbbac-06f5-49fc-bc7b-284c5f6c44e9","name":"Disconnect WhatsApp","originalRequest":{"method":"DELETE","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":{"raw":"https://chatalo.com/api/v1/device/disconnect/:deviceId","host":["https://chatalo.com/api/v1"],"path":["device","disconnect",":deviceId"],"variable":[{"key":"deviceId","value":"5cc1ae6b-f263-4fbc-9855-xxxxxxxxxxxx"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 26 Feb 2025 09:38:39 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_disconnected\": true\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"6adfe94b-fcc1-4f69-a262-25c87b6a1a6d"},{"name":"Delete Device","id":"066583fd-70b7-4b82-beba-f9bba899eed1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/device/delete/:deviceId","description":"<p>This endpoint permanently deletes a specified device from the system. Once deleted, the device cannot be restored, and you will need to register a new one if needed.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Define the device ID\n$deviceId = '716a5251-276b-4d3f-b882-xxxxxxxxxxxx';\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https://chatalo.com/api/v1/device/delete/$deviceId\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'DELETE',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["device","delete",":deviceId"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[{"id":"bbcac279-60bc-456c-b888-bb81e67b37f8","type":"any","value":"5cc1ae6b-f263-4fbc-9855-xxxxxxxxxxxx","key":"deviceId"}]}},"response":[{"id":"a16cd733-4aec-4a50-ba7e-513b5020e81e","name":"Delete Device","originalRequest":{"method":"DELETE","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":{"raw":"https://chatalo.com/api/v1/device/delete/:deviceId","host":["https://chatalo.com/api/v1"],"path":["device","delete",":deviceId"],"variable":[{"key":"deviceId","value":"5cc1ae6b-f263-4fbc-9855-xxxxxxxxxxxx"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 26 Feb 2025 09:47:12 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_deleted\": true\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"066583fd-70b7-4b82-beba-f9bba899eed1"}],"id":"8d5ffbf5-8b71-41bc-a09b-1212b42802c2","_postman_id":"8d5ffbf5-8b71-41bc-a09b-1212b42802c2","description":""},{"name":"Contact","item":[{"name":"Get Contact List","id":"f93fc09a-4274-43c4-83c8-eae5539829fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/contacts?page=1&limit=15","description":"<p>Get list of contacts</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Query parameters\n$query_params = array(\n    'page' =&gt; 1,\n    'limit' =&gt; 15,\n);\n// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/contacts?' . http_build_query($query_params),\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["contacts"],"host":["https://chatalo.com/api/v1"],"query":[{"description":{"content":"<p>Numeric</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Numeric, default is 15</p>\n","type":"text/plain"},"key":"limit","value":"15"}],"variable":[]}},"response":[{"id":"af4e7110-1bcf-4b62-b741-cef49fb3eb9a","name":"Get Contact List","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://chatalo.com/api/v1/contacts?page=1&limit=15","host":["https://chatalo.com/api/v1"],"path":["contacts"],"query":[{"key":"page","value":"1","description":"Numeric"},{"key":"limit","value":"15","description":"Numeric, default is 15"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 20 Jul 2023 11:23:14 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"53"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"number\": \"628785827xxxx\",\n            \"name\": \"Arik\"\n        },\n        {\n            \"number\": \"6289541359xxxx\",\n            \"name\": \"Angga\"\n        },\n        {\n            \"number\": \"628232967xxxx\",\n            \"name\": \"Zumy\"\n        },\n        {\n            \"number\": \"628177289xxxx\",\n            \"name\": \"Miftah\"\n        },\n        {\n            \"number\": \"628127150xxxx\",\n            \"name\": \"Ramdani\"\n        },\n        {\n            \"number\": \"6281668xxxx\",\n            \"name\": \"Ibu Mardhiya\"\n        },\n        {\n            \"number\": \"628222199xxxx\",\n            \"name\": \"Miftahul Huda\"\n        },\n        {\n            \"number\": \"628132815xxxx\",\n            \"name\": \"Ellysia\"\n        },\n        {\n            \"number\": \"628121643xxxx\",\n            \"name\": \"Edo\"\n        },\n        {\n            \"number\": \"628123331xxxx\",\n            \"name\": \"Hendy\"\n        },\n        {\n            \"number\": \"628129227xxxx\",\n            \"name\": \"Fiyas\"\n        },\n        {\n            \"number\": \"628134538xxxx\",\n            \"name\": \"Fizza\"\n        },\n        {\n            \"number\": \"628233933xxxx\",\n            \"name\": \"Fani\"\n        },\n        {\n            \"number\": \"628127217xxxx\",\n            \"name\": \"Jeki\"\n        },\n        {\n            \"number\": \"628587588xxxx\",\n            \"name\": \"Burhan\"\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\",\n        \"pagination\": {\n            \"current_page\": 1,\n            \"total\": 1896,\n            \"limit\": 15,\n            \"last_page\": 127\n        }\n    }\n}"}],"_postman_id":"f93fc09a-4274-43c4-83c8-eae5539829fd"},{"name":"Get Profile Picture","id":"615769a5-ff9d-4407-b6ca-7fc71eb85590","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"number\": \"628177062xxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/contacts/picture","description":"<p>Get someone's profile picture</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'number' =&gt; '628177062xxxx'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/contacts/picture',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["contacts","picture"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a89c5061-ca61-4021-9c48-718aec50b352","name":"Get Profile Picture","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"number\": \"628177062xxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/contacts/picture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 20 Jul 2023 16:07:22 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"number\": \"628177062xxxx\",\n        \"url\": \"WHATSAPP-PROFILE-PICTURE-URL\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"615769a5-ff9d-4407-b6ca-7fc71eb85590"},{"name":"Check Number","id":"c666a694-8c8a-481f-86e9-924b28889b68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"number\": \"628177062xxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/contacts/check","description":"<p>Check if number exists on WhatsApp or not</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'number' =&gt; '628177062xxxx'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/contacts/check',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["contacts","check"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"be10bfac-5c7c-48ca-8b12-b2562fd38131","name":"Check Number","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"number\": \"628177062xxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/contacts/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 20 Jul 2023 16:11:42 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"number\": \"628177062xxxx\",\n        \"exists\": true\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"c666a694-8c8a-481f-86e9-924b28889b68"}],"id":"9e27eef9-6a8c-4e73-bf58-765ef778f38d","_postman_id":"9e27eef9-6a8c-4e73-bf58-765ef778f38d","description":""},{"name":"Group","item":[{"name":"Get Group List","id":"e5513f15-da68-47d5-a971-4463c0546e8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/groups?page=1&limit=15","description":"<p>Get list of groups</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Query parameters\n$query_params = array(\n    'page' =&gt; 1,\n    'limit' =&gt; 15,\n);\n// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/groups?' . http_build_query($query_params),\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["groups"],"host":["https://chatalo.com/api/v1"],"query":[{"description":{"content":"<p>Numeric</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Numeric, default is 15</p>\n","type":"text/plain"},"key":"limit","value":"15"}],"variable":[]}},"response":[{"id":"b5a9736a-26c2-4622-a286-7c71340604b3","name":"Get Group List","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://chatalo.com/api/v1/groups?page=1&limit=15","host":["https://chatalo.com/api/v1"],"path":["groups"],"query":[{"key":"page","value":"1","description":"Numeric"},{"key":"limit","value":"15","description":"Numeric, default is 15"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 20 Jul 2023 16:30:53 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"628156875832-1503xxxxxx\",\n            \"name\": \"GROUP 1\",\n            \"participants\": 27\n        },\n        {\n            \"id\": \"120363028887xxxxxx\",\n            \"name\": \"GROUP 2\",\n            \"participants\": 548\n        },\n        {\n            \"id\": \"6281259414005-1569xxxxxx\",\n            \"name\": \"GROUP 3\",\n            \"participants\": 238\n        },\n        {\n            \"id\": \"120363047134xxxxxx\",\n            \"name\": \"GROUP 4\",\n            \"participants\": 746\n        },\n        {\n            \"id\": \"120363037968xxxxxx\",\n            \"name\": \"GROUP 5\",\n            \"participants\": 15\n        },\n        {\n            \"id\": \"6285747015011-1441xxxxxx\",\n            \"name\": \"GROUP 6\",\n            \"participants\": 163\n        },\n        {\n            \"id\": \"120363045904xxxxxx\",\n            \"name\": \"GROUP 7\",\n            \"participants\": 5\n        },\n        {\n            \"id\": \"6285747263108-1491xxxxxx\",\n            \"name\": \"GROUP 8\",\n            \"participants\": 48\n        },\n        {\n            \"id\": \"6281316024569-1633xxxxxx\",\n            \"name\": \"GROUP 9\",\n            \"participants\": 3\n        },\n        {\n            \"id\": \"6285693993527-1524xxxxxx\",\n            \"name\": \"GROUP 10\",\n            \"participants\": 244\n        },\n        {\n            \"id\": \"6289632745429-1499xxxxxx\",\n            \"name\": \"GROUP 11\",\n            \"participants\": 232\n        },\n        {\n            \"id\": \"6289696758999-1544xxxxxx\",\n            \"name\": \"GROUP 12\",\n            \"participants\": 22\n        },\n        {\n            \"id\": \"919811865050-1580xxxxxx\",\n            \"name\": \"GROUP 13\",\n            \"participants\": 202\n        },\n        {\n            \"id\": \"628562551617-1498xxxxxx\",\n            \"name\": \"GROUP 14\",\n            \"participants\": 10\n        },\n        {\n            \"id\": \"6289632745429-1507xxxxxx\",\n            \"name\": \"GROUP 15\",\n            \"participants\": 171\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\",\n        \"pagination\": {\n            \"current_page\": 1,\n            \"total\": 206,\n            \"limit\": 15,\n            \"last_page\": 14\n        }\n    }\n}"}],"_postman_id":"e5513f15-da68-47d5-a971-4463c0546e8b"},{"name":"Get Group Detail","id":"0e140127-ab36-494d-98bc-008f83d9d8bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"group_id\": \"120363037968xxxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/groups/detail","description":"<p>Get group details and all participant list in group</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'group_id' =&gt; '120363037968xxxxxx'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/groups/detail',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["groups","detail"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"24c164fe-2ae7-4c67-9bb6-a7328e3f9df9","name":"Get Group Detail","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"group_id\": \"120363037968xxxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/groups/detail"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 25 Jul 2023 01:16:28 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"120363037968xxxxxx\",\n        \"name\": \"GROUP 5\",\n        \"desc\": null,\n        \"owner\": \"628233933xxxx\",\n        \"creation\": 1642144181,\n        \"restrict\": false,\n        \"announce\": false,\n        \"size\": 15,\n        \"participants\": [\n            {\n                \"number\": \"628121643xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628127150xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628132333xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628219355xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628225411xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628233933xxxx\",\n                \"admin\": \"superadmin\"\n            },\n            {\n                \"number\": \"628238730xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628516110xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628517163xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628522984xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628529885xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628785401xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628950596xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"628951276xxxx\",\n                \"admin\": null\n            },\n            {\n                \"number\": \"62897020xxxx\",\n                \"admin\": null\n            }\n        ]\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"0e140127-ab36-494d-98bc-008f83d9d8bd"}],"id":"bb66123a-0dbe-4539-bd45-8027fe808288","_postman_id":"bb66123a-0dbe-4539-bd45-8027fe808288","description":""},{"name":"Message","item":[{"name":"Personal","item":[{"name":"Send Text Message","id":"66edc85e-efd4-4767-9e2f-13f61c5488c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"text\",\n    \"number\": \"628897509xxxx\",\n    \"message\": \"YOUR-MESSAGE\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages","description":"<p>Send text message only to any WhatsApp number</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'type' =&gt; 'text',\n    'number' =&gt; '628177062xxxx',\n    'message' =&gt; 'YOUR-MESSAGE'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/messages',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["messages"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"fe87de70-9831-453f-9791-bd3e79a57419","name":"Send Text Message","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"text\",\n    \"number\": \"628897509xxxx\",\n    \"message\": \"YOUR-MESSAGE\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 01:51:51 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_sent\": true,\n        \"number\": \"628897509xxxx\",\n        \"url\": null,\n        \"type\": \"text\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"66edc85e-efd4-4767-9e2f-13f61c5488c3"},{"name":"Send Caption Message","id":"7cc276ad-acd5-4942-a95a-ddf144ed3a94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"caption\",\n    \"number\": \"628897509xxxx\",\n    \"message\": \"YOUR-MESSAGE\",\n    \"url\": \"https://i.imgflip.com/2zxmg9.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages","description":"<p>Send text message (caption) with file to any WhatsApp number</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'type' =&gt; 'caption',\n    'number' =&gt; '628177062xxxx',\n    'message' =&gt; 'YOUR-MESSAGE',\n    'url' =&gt; 'https://i.imgflip.com/2zxmg9.jpg',\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/messages',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["messages"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a980dec6-30e1-4784-8138-a66aae6fb331","name":"Send Caption Message","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"caption\",\n    \"number\": \"628897509xxxx\",\n    \"message\": \"YOUR-MESSAGE\",\n    \"url\": \"https://i.imgflip.com/2zxmg9.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 01:53:15 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_sent\": true,\n        \"number\": \"628897509xxxx\",\n        \"url\": \"https://i.imgflip.com/2zxmg9.jpg\",\n        \"type\": \"caption\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"7cc276ad-acd5-4942-a95a-ddf144ed3a94"},{"name":"Send File","id":"9c4f2aa8-165c-4a02-b303-d9080a5f1a32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"file\",\n    \"number\": \"628897509xxxx\",\n    \"url\": \"https://i.imgflip.com/2zxmg9.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages","description":"<p>Send file only to any WhatsApp number</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'type' =&gt; 'file',\n    'number' =&gt; '628177062xxxx',\n    'url' =&gt; 'https://i.imgflip.com/2zxmg9.jpg',\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/messages',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["messages"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ad800fee-c909-421e-b94d-413ee9740e54","name":"Send File","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"file\",\n    \"number\": \"628897509xxxx\",\n    \"url\": \"https://i.imgflip.com/2zxmg9.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 01:54:32 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_sent\": true,\n        \"number\": \"628897509xxxx\",\n        \"url\": \"https://i.imgflip.com/2zxmg9.jpg\",\n        \"type\": \"file\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"9c4f2aa8-165c-4a02-b303-d9080a5f1a32"}],"id":"e2f3e714-4fdc-44d7-88f8-37e64074ba91","_postman_id":"e2f3e714-4fdc-44d7-88f8-37e64074ba91","description":""},{"name":"Group","item":[{"name":"Send Text Message","id":"bb214261-d862-42f6-aa76-5c074e017284","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"text\",\n    \"group_id\": \"120363037968xxxxxx\",\n    \"message\": \"YOUR-MESSAGE\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages/group","description":"<p>Send text message only to any WhatsApp group</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'type' =&gt; 'text',\n    'group_id' =&gt; '120363037968xxxxxx',\n    'message' =&gt; 'YOUR-MESSAGE'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/messages/group',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["messages","group"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"47c3f37d-6d40-4216-9a32-e79eaaee2c6c","name":"Send Text Message","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"text\",\n    \"group_id\": \"120363037968xxxxxx\",\n    \"message\": \"YOUR-MESSAGE\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages/group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 02:15:31 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_sent\": true,\n        \"group_id\": \"120363037968xxxxxx\",\n        \"url\": null,\n        \"type\": \"text\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"bb214261-d862-42f6-aa76-5c074e017284"},{"name":"Send Caption Message","id":"02ddb721-0511-459e-a49e-43df0b13da15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"caption\",\n    \"group_id\": \"120363037968xxxxxx\",\n    \"message\": \"YOUR-MESSAGE\",\n    \"url\": \"https://i.imgflip.com/2zxmg9.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages/group","description":"<p>Send text message (caption) with file to any WhatsApp group</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'type' =&gt; 'caption',\n    'group_id' =&gt; '120363037968xxxxxx',\n    'message' =&gt; 'YOUR-MESSAGE',\n    'url' =&gt; 'https://i.imgflip.com/2zxmg9.jpg'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/messages/group',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["messages","group"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e7c930af-c0f6-46ff-a6f9-d33700088594","name":"Send Caption Message","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"caption\",\n    \"group_id\": \"120363037968xxxxxx\",\n    \"message\": \"YOUR-MESSAGE\",\n    \"url\": \"https://i.imgflip.com/2zxmg9.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages/group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 02:16:21 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_sent\": true,\n        \"group_id\": \"120363037968xxxxxx\",\n        \"url\": \"https://i.imgflip.com/2zxmg9.jpg\",\n        \"type\": \"caption\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"02ddb721-0511-459e-a49e-43df0b13da15"},{"name":"Send File","id":"6d811a28-75f6-4e8f-8518-3f883b609b05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"file\",\n    \"group_id\": \"120363037968xxxxxx\",\n    \"url\": \"https://i.imgflip.com/2zxmg9.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages/group","description":"<p>Send file only to any WhatsApp group</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'type' =&gt; 'file',\n    'group_id' =&gt; '120363037968xxxxxx',\n    'url' =&gt; 'https://i.imgflip.com/2zxmg9.jpg'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/messages/group',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["messages","group"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e98eef71-ad55-4f3d-ae3b-be3f82a59d0d","name":"Send File","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"type\": \"file\",\n    \"group_id\": \"120363037968xxxxxx\",\n    \"url\": \"https://i.imgflip.com/2zxmg9.jpg\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages/group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 02:17:22 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_sent\": true,\n        \"group_id\": \"120363037968xxxxxx\",\n        \"url\": \"https://i.imgflip.com/2zxmg9.jpg\",\n        \"type\": \"file\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"6d811a28-75f6-4e8f-8518-3f883b609b05"}],"id":"3501d0ab-17eb-44d6-b361-1d2fba1a9e45","_postman_id":"3501d0ab-17eb-44d6-b361-1d2fba1a9e45","description":""},{"name":"Download Message Media","id":"5a3e0783-36ee-4e72-8c51-78963582c5eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"file_encoded\": \"eyJpdiI6ImV3d...\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/messages/download","description":"<p>Download media from a message. You can get incoming message information through Webhook. Return the media with its associated content type on success</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx',\n    'file_encoded' =&gt; 'eyJpdiI6ImV3d...'\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/messages/download',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["messages","download"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a3e0783-36ee-4e72-8c51-78963582c5eb"}],"id":"602abce1-9afd-4473-a218-0668590c341f","_postman_id":"602abce1-9afd-4473-a218-0668590c341f","description":""},{"name":"One-Time Password (OTP)","item":[{"name":"Send OTP","id":"08766108-7e3a-4369-aeff-3b40a9505667","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"number\": \"628897509xxxx\",\n    \"message\": \"Your OTP code is: {otp_code}\",\n    \"timeout\": 120,\n    \"max_attempts\": 5\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/otp/send","description":"<p>This endpoint is used to send a One-Time Password (OTP) to a specified phone number. The OTP can be used for authentication or verification purposes.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'device_id' =&gt; 'c7276ae0-c306-4896-8fda-xxxxxxxxxxxx', // The unique identifier of the device sending the OTP.\n    'number' =&gt; '628177062xxxx', // The recipient's phone number in international format (e.g., 628897509xxxx).\n    'message' =&gt; 'Your OTP code is: {otp_code}', // The message must include {otp_code}, which will be replaced with the actual OTP.\n    'timeout' =&gt; 120, // The OTP expiration time in seconds.\n    'max_attempts' =&gt; 5, // The maximum number of OTP verification attempts allowed.\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/otp/send',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["otp","send"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6a7c9305-ff9d-49b0-a968-6d1701d3dcb9","name":"Send OTP","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxxx\",\n    \"number\": \"628897509xxxx\",\n    \"message\": \"Your OTP code is: {otp_code}\",\n    \"timeout\": 120,\n    \"max_attempts\": 5\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/otp/send"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 01:51:51 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"success\": true,\n        \"request_id\": \"a785a9d3-2d5b-4f18-8506-xxxxxxxxxxxx\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OTP has been sent successfully.\"\n    }\n}"}],"_postman_id":"08766108-7e3a-4369-aeff-3b40a9505667"},{"name":"Validate OTP","id":"83c6a265-4ced-4d64-9f7e-db458e6bb1b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"request_id\": \"147bb586-db16-4b6c-8da3-xxxxxxxxxxxx\",\n    \"otp_code\": \"637026\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/otp/validate","description":"<p>This endpoint is used to validate a previously sent One-Time Password (OTP). The OTP must match the one sent to the provided phone number and be used within the specified timeout period.</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'request_id' =&gt; '147bb586-db16-4b6c-8da3-xxxxxxxxxxxx', // The unique identifier of the OTP request.\n    'otp_code' =&gt; '637026' // The OTP code entered by the user.\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/otp/validate',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["otp","validate"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5524fd02-8def-4755-8f05-1505389ec4dd","name":"Send OTP","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"request_id\": \"147bb586-db16-4b6c-8da3-xxxxxxxxxxxx\",\n    \"otp_code\": \"637026\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/otp/validate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 01:51:51 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"success\": true,\n        \"request_id\": \"147bb586-db16-4b6c-8da3-xxxxxxxxxxxx\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OTP verified successfully.\"\n    }\n}"}],"_postman_id":"83c6a265-4ced-4d64-9f7e-db458e6bb1b4"}],"id":"20455e4a-d168-46e2-9f65-07f810fba777","_postman_id":"20455e4a-d168-46e2-9f65-07f810fba777","description":""},{"name":"Webhook","item":[{"name":"Get Webhook","id":"58f7e42a-8205-44e6-884b-27a4c7add9bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/webhook","description":"<p>Get current webhook url</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/webhook',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'GET',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["webhook"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"620579a5-b258-4a77-a186-1039ef6c6d9a","name":"Get Webhook","originalRequest":{"method":"GET","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/webhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 03:05:14 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"url\": \"YOUR-WEBHOOK-URL\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"58f7e42a-8205-44e6-884b-27a4c7add9bf"},{"name":"Set Webhook","id":"5776be01-9b93-4e80-87cc-16500333c3d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"YOUR-WEBHOOK-URL\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/setWebhook","description":"<p>Set webhook url to receive any WhatsApp incoming message and additional data</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Create an associative array containing the JSON post data\n$data = array(\n    'url' =&gt; 'YOUR-WEBHOOK-URL',\n);\n// Convert the array post data to a JSON string\n$jsonData = json_encode($data);\n// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/setWebhook',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'POST',\n  CURLOPT_POSTFIELDS =&gt; $jsonData,\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["setWebhook"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e9e04aa6-c922-414c-8bf2-2e35821a09fb","name":"Set Webhook","originalRequest":{"method":"POST","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"YOUR-WEBHOOK-URL\"\n}","options":{"raw":{"language":"json"}}},"url":"https://chatalo.com/api/v1/setWebhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 21 Jul 2023 03:03:27 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"url\": \"YOUR-WEBHOOK-URL\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"5776be01-9b93-4e80-87cc-16500333c3d1"},{"name":"Unset Webhook","id":"f09b4ce4-86c6-4414-8549-88fb46ad0360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/unsetWebhook","description":"<p>Removes the Webhook that has been set</p>\n<p>PHP Script Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">// Initialize cURL session\n$curl = curl_init();\n// Set cURL options\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; 'https://chatalo.com/api/v1/unsetWebhook',\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; '',\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; 'DELETE',\n  CURLOPT_HTTPHEADER =&gt; array(\n    'Content-Type: application/json',\n    'X-Public-Key: YOUR-PUBLIC-KEY',\n    'X-Secret-Key: YOUR-SECRET-KEY'\n  ),\n));\n// Execute cURL request\n$response = curl_exec($curl);\n// Close cURL session\ncurl_close($curl);\n// Show the response\necho $response;\n\n</code></pre>\n","urlObject":{"path":["unsetWebhook"],"host":["https://chatalo.com/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5933c2a7-9441-4fbe-ada8-8bf6e792f47d","name":"Unset Webhook","originalRequest":{"method":"DELETE","header":[{"key":"X-Public-Key","value":"YOUR-PUBLIC-KEY","type":"text"},{"key":"X-Secret-Key","value":"YOUR-SECRET-KEY","type":"text"}],"url":"https://chatalo.com/api/v1/unsetWebhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 25 Jul 2023 02:10:21 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [],\n    \"meta\": {\n        \"code\": 200,\n        \"message\": \"OK\"\n    }\n}"}],"_postman_id":"f09b4ce4-86c6-4414-8549-88fb46ad0360"},{"name":"Example Webhook Request","id":"ee9ca9f7-56fa-4af3-8382-a8df9e99b3b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"device_id\": \"c7276ae0-c306-4896-8fda-xxxxxxxxxxx\",\n  \"chat_id\": \"D073D8Bxxxx\",\n  \"sender\": {\n    \"name\": \"SENDER-NAME\",\n    \"number\": \"628897509xxxx\",\n    \"in_group\": false,\n    \"group_id\": null\n  },\n  \"from_me\": false,\n  \"is_forwarded\": false,\n  \"is_sticker\": false,\n  \"timestamp\": 1689930829,\n  \"broadcast\": false,\n  \"message\": false,\n  \"has_media\": true,\n  \"media_info\": {\n    \"mimetype\": \"image/jpeg\",\n    \"file_url\": \"https://chatalo.com/files/1ee5b9a3-f5dc-46cb-b45c-xxxxxxxxxxxx\",\n    \"file_encoded\": \"eyJpdiI6ImV3d...\"\n  },\n  \"location_attached\": {\n    \"latitude\": null,\n    \"longitude\": null\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://domain.tld/webhook","urlObject":{"protocol":"https","path":["webhook"],"host":["domain","tld"],"query":[],"variable":[]}},"response":[],"_postman_id":"ee9ca9f7-56fa-4af3-8382-a8df9e99b3b3"}],"id":"ef37c91a-4b8e-490a-a085-2b8da83e0f87","_postman_id":"ef37c91a-4b8e-490a-a085-2b8da83e0f87","description":""}],"event":[{"listen":"prerequest","script":{"id":"0a106809-5743-4c8d-ad1b-e0668ba6307e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0af63758-dd4d-45d0-9fdc-ea8be0af4a67","type":"text/javascript","exec":[""]}}],"variable":[{"key":"API_URL","value":"https://chatalo.com/api/v1","type":"string"},{"key":"PUBLIC_KEY","value":"YOUR-PUBLIC-KEY","type":"string"},{"key":"SECRET_KEY","value":"YOUR-SECRET-KEY","type":"string"}]}