{"info":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","description":"<html><head></head><body><h1 id=\"sendiee-api-v20\">Sendiee API (v2.0)</h1>\n<p>Official Sendiee REST API. Sendiee is an official Meta Business Partner; messaging is powered by Meta's WhatsApp Cloud API.</p>\n<ul>\n<li><strong>Base URL:</strong> <code>https://api.sendiee.com</code></li>\n<li><strong>Version:</strong> <code>v2.0</code> (all paths prefixed with <code>/v2.0/</code>)</li>\n<li><strong>Auth:</strong> Bearer token — <code>Authorization: Bearer &lt;API_KEY&gt;</code> (Dashboard -&gt; API &amp; Webhooks)</li>\n<li><strong>Content-Type:</strong> <code>application/json</code></li>\n<li><strong>Docs:</strong> <a href=\"https://docs.sendiee.com\">https://docs.sendiee.com</a></li>\n</ul>\n<h2 id=\"response-envelope\">Response Envelope</h2>\n<p><strong>Success:</strong> <code>{ \"success\": true, \"message\": \"...\", \"data\": { ... } }</code></p>\n<p><strong>Error:</strong> <code>{ \"success\": false, \"code\": \"ERROR_CODE\", \"message\": \"Human-readable description\" }</code></p>\n<h2 id=\"rate-limits\">Rate Limits</h2>\n<p>Two rolling limits enforced per organisation. Exceeding either returns <code>429 Too Many Requests</code> — check the <code>Retry-After</code> header.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Limit</th>\n<th>Free</th>\n<th>Growth</th>\n<th>Pro</th>\n<th>Business</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Per second (<code>api_rate_limit_per_sec</code>)</td>\n<td>5</td>\n<td>10</td>\n<td>20</td>\n<td>60</td>\n</tr>\n<tr>\n<td>Per day (<code>api_rate_limit_per_day</code>)</td>\n<td>100</td>\n<td>1,000</td>\n<td>20,000</td>\n<td>50,000</td>\n</tr>\n</tbody>\n</table>\n</div><p>Error codes: <code>RATE_LIMIT_EXCEEDED_PER_SECOND</code>, <code>RATE_LIMIT_EXCEEDED_PER_DAY</code>. WhatsApp messaging is also subject to <strong>Meta's tier limits</strong> (Tier 1 = 250 unique customers / 24h, increases automatically).</p>\n<h2 id=\"error-codes-reference\">Error Codes Reference</h2>\n<h3 id=\"authentication--organisation\">Authentication &amp; Organisation</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>API_KEY_MISSING</code></td>\n<td>401</td>\n<td>No API key in the Authorization header</td>\n</tr>\n<tr>\n<td><code>INVALID_API_KEY</code></td>\n<td>401</td>\n<td>API key does not exist or is revoked</td>\n</tr>\n<tr>\n<td><code>INSUFFICIENT_SCOPE</code></td>\n<td>403</td>\n<td>Key lacks the required scope (see <code>required_scope</code>)</td>\n</tr>\n<tr>\n<td><code>ORG_INACTIVE</code></td>\n<td>403</td>\n<td>Organisation account is inactive</td>\n</tr>\n<tr>\n<td><code>DOMAIN_NOT_WHITELISTED</code></td>\n<td>403</td>\n<td>Request origin domain not in allowed list</td>\n</tr>\n<tr>\n<td><code>ORG_ID_REQUIRED</code></td>\n<td>400</td>\n<td>Org ID could not be resolved from API key</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"plan-enforcement\">Plan Enforcement</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>LIMIT_EXCEEDED</code></td>\n<td>403</td>\n<td>Numeric plan limit reached. Includes <code>limitKey</code>, <code>current</code>, <code>limit</code></td>\n</tr>\n<tr>\n<td><code>PLAN_LIMIT_EXCEEDED</code></td>\n<td>403</td>\n<td>Lead-segmentation count limit reached (categories / follow-ups / insights)</td>\n</tr>\n<tr>\n<td><code>PLAN_FEATURE_DISABLED</code></td>\n<td>403</td>\n<td>Feature toggle not included in the current plan</td>\n</tr>\n<tr>\n<td><code>FEATURE_NOT_ENABLED</code></td>\n<td>403</td>\n<td>Feature not available on current plan</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"whatsapp--messaging\">WhatsApp &amp; Messaging</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>BRAND_NUMBER_MISSING</code></td>\n<td>400</td>\n<td><code>brandNumber</code> not provided</td>\n</tr>\n<tr>\n<td><code>WABA_NOT_FOUND</code></td>\n<td>404</td>\n<td>No active WhatsApp account for given <code>brandNumber</code></td>\n</tr>\n<tr>\n<td><code>MISSING_RECIPIENT</code></td>\n<td>400</td>\n<td><code>to</code> field is required</td>\n</tr>\n<tr>\n<td><code>INVALID_PHONE_NUMBER</code></td>\n<td>400</td>\n<td>Phone number failed validation</td>\n</tr>\n<tr>\n<td><code>MISSING_TEMPLATE</code></td>\n<td>400</td>\n<td>Neither <code>templateId</code> nor <code>templateName</code> provided</td>\n</tr>\n<tr>\n<td><code>TEMPLATE_NOT_FOUND</code></td>\n<td>404</td>\n<td>Template not found or not APPROVED</td>\n</tr>\n<tr>\n<td><code>PARAMETER_VALIDATION_ERROR</code></td>\n<td>400</td>\n<td>Template parameter count mismatch</td>\n</tr>\n<tr>\n<td><code>INVALID_SCHEDULE_TIME</code></td>\n<td>400</td>\n<td>Scheduled time is in the past</td>\n</tr>\n<tr>\n<td><code>META_API_ERROR</code></td>\n<td>502</td>\n<td>Error returned by Meta's WhatsApp Cloud API</td>\n</tr>\n<tr>\n<td><code>MESSAGE_NOT_FOUND</code></td>\n<td>404</td>\n<td>Message ID not found in this org</td>\n</tr>\n<tr>\n<td><code>SCHEDULE_NOT_CANCELLABLE</code></td>\n<td>400</td>\n<td>Message already sent/processing — cannot cancel</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"contacts-fields--tags\">Contacts, Fields &amp; Tags</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>MISSING_PHONE</code></td>\n<td>400</td>\n<td><code>phone</code> field is required</td>\n</tr>\n<tr>\n<td><code>CONTACT_NOT_FOUND</code></td>\n<td>404</td>\n<td>No contact found for the given identifier</td>\n</tr>\n<tr>\n<td><code>CONTACT_ALREADY_EXISTS</code></td>\n<td>409</td>\n<td>Contact with this phone already exists</td>\n</tr>\n<tr>\n<td><code>INVALID_FIELD_TYPE</code></td>\n<td>400</td>\n<td><code>fieldType</code> not text/number/date/boolean/dropdown</td>\n</tr>\n<tr>\n<td><code>MISSING_DROPDOWN_OPTIONS</code></td>\n<td>400</td>\n<td><code>options</code> required for <code>dropdown</code> type</td>\n</tr>\n<tr>\n<td><code>CUSTOM_FIELD_NOT_FOUND</code></td>\n<td>404</td>\n<td>Custom field not found</td>\n</tr>\n<tr>\n<td><code>CUSTOM_FIELD_ALREADY_EXISTS</code></td>\n<td>409</td>\n<td>Custom field key already exists</td>\n</tr>\n<tr>\n<td><code>MISSING_TAG_NAME</code></td>\n<td>400</td>\n<td>Tag <code>name</code> is required</td>\n</tr>\n<tr>\n<td><code>TAG_NOT_FOUND</code></td>\n<td>404</td>\n<td>Tag not found</td>\n</tr>\n<tr>\n<td><code>TAG_ALREADY_EXISTS</code></td>\n<td>409</td>\n<td>Tag name already exists</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"templates\">Templates</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>TEMPLATE_VALIDATION_FAILED</code></td>\n<td>422</td>\n<td>Local pre-Meta validation failed; see <code>details[]</code></td>\n</tr>\n<tr>\n<td><code>TEMPLATE_RATE_LIMITED</code></td>\n<td>429</td>\n<td>Template-create cap hit (2/min, 30/day)</td>\n</tr>\n<tr>\n<td><code>WABA_NOT_REVIEWED</code></td>\n<td>409</td>\n<td>WABA not in APPROVED review status</td>\n</tr>\n<tr>\n<td><code>META_REJECTED</code></td>\n<td>502</td>\n<td>Meta returned an error; see <code>details</code></td>\n</tr>\n<tr>\n<td><code>MEDIA_UPLOAD_FAILED</code></td>\n<td>502</td>\n<td>Failed to download/upload header media</td>\n</tr>\n<tr>\n<td><code>INVALID_TEMPLATE_ID</code></td>\n<td>400</td>\n<td><code>id</code> is neither a 24-hex ObjectId nor a numeric templateId</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"campaigns\">Campaigns</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>CAMPAIGN_EMPTY_AUDIENCE</code></td>\n<td>400</td>\n<td>Resolved audience contains 0 contacts</td>\n</tr>\n<tr>\n<td><code>CAMPAIGN_VARIABLES_INVALID</code></td>\n<td>422</td>\n<td>Variables don't match template requirements</td>\n</tr>\n<tr>\n<td><code>CAMPAIGN_TEMPLATE_NOT_APPROVED</code></td>\n<td>409</td>\n<td>Template exists but is not APPROVED</td>\n</tr>\n<tr>\n<td><code>CAMPAIGN_NOT_FOUND</code></td>\n<td>404</td>\n<td>Campaign missing or belongs to another org</td>\n</tr>\n<tr>\n<td><code>CAMPAIGN_NOT_CANCELLABLE</code></td>\n<td>409</td>\n<td>Campaign already completed/failed/cancelled</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"assistants\">Assistants</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ASSISTANT_VALIDATION_FAILED</code></td>\n<td>422</td>\n<td>Payload failed local validation; see <code>details[]</code></td>\n</tr>\n<tr>\n<td><code>MODEL_INVALID_FOR_PROVIDER</code></td>\n<td>422</td>\n<td><code>model</code> not in the chosen provider's catalog</td>\n</tr>\n<tr>\n<td><code>ASSISTANT_NOT_FOUND</code></td>\n<td>404</td>\n<td>modelId doesn't exist in your org</td>\n</tr>\n<tr>\n<td><code>VERSION_NOT_RESTORABLE</code></td>\n<td>400</td>\n<td>Version is a toggle/channel_update/restore</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"tools\">Tools</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>TOOL_VALIDATION_FAILED</code></td>\n<td>422</td>\n<td>Validation failed; see <code>details[]</code> with <code>example</code></td>\n</tr>\n<tr>\n<td><code>TOOL_NAME_EXISTS</code></td>\n<td>409</td>\n<td>Duplicate tool name</td>\n</tr>\n<tr>\n<td><code>TOOL_TYPE_IMMUTABLE</code></td>\n<td>400</td>\n<td><code>toolType</code> cannot be changed after creation</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"lead-segmentation\">Lead Segmentation</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>CATEGORY_EXISTS</code></td>\n<td>409</td>\n<td>A lead category with this name already exists</td>\n</tr>\n<tr>\n<td><code>CATEGORY_NOT_FOUND</code></td>\n<td>404</td>\n<td>Lead category not found</td>\n</tr>\n<tr>\n<td><code>CATEGORY_IN_USE</code></td>\n<td>409</td>\n<td>Contacts still use this category — pass <code>reassignTo</code></td>\n</tr>\n<tr>\n<td><code>INSIGHT_EXISTS</code></td>\n<td>409</td>\n<td>An insight (audience segment) with this key already exists</td>\n</tr>\n<tr>\n<td><code>INSIGHT_NOT_FOUND</code></td>\n<td>404</td>\n<td>Insight not found</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"generic\">Generic</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>HTTP</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>INTERNAL_SERVER_ERROR</code></td>\n<td>500</td>\n<td>Unexpected server-side error</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Sendiee API (v2.0)","slug":"sendiee-api-v20"}],"owner":"36785064","collectionId":"8133345d-d2da-4c74-ac10-ff85665645d3","publishedId":"2sBXwsMq9e","public":true,"customColor":{"top-bar":"fdfcf9","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-06-13T01:07:05.000Z"},"item":[{"name":"WhatsApp","item":[{"name":"Send Template Message","id":"9f641dc7-c42c-4676-b77b-14228f428e7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"templateName\": \"order_confirmation\",\n  \"language\": \"en\",\n  \"bodyParameters\": [\n    \"John\",\n    \"#ORD1024\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/whatsapp/send","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","whatsapp","send"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"937d3370-3ca2-47ba-b2fb-53853ab609f0","name":"Sent","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"templateName\": \"order_confirmation\",\n  \"language\": \"en\",\n  \"bodyParameters\": [\n    \"John\",\n    \"#ORD1024\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/whatsapp/send"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1fa39f46-8d86-41d5-88f2-4d042fe705c4","name":"Scheduled","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"templateName\": \"order_confirmation\",\n  \"language\": \"en\",\n  \"bodyParameters\": [\n    \"John\",\n    \"#ORD1024\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/whatsapp/send"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9f641dc7-c42c-4676-b77b-14228f428e7c"},{"name":"Send Freeform Message","id":"af399a8a-fef9-4584-b2ff-52a0411f706a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"type\": \"text\",\n  \"content\": {\n    \"body\": \"Hello from Sendiee!\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/whatsapp/message","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","whatsapp","message"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"354db415-f715-4ea0-a7a1-e0193371c6aa","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"to\": \"919876543210\",\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"type\": \"text\",\n  \"content\": {\n    \"body\": \"Hello from Sendiee!\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/whatsapp/message"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"af399a8a-fef9-4584-b2ff-52a0411f706a"},{"name":"Message Status","id":"37512a6e-94dc-4024-8430-f0cdb05033cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/whatsapp/message/status?messageId={{messageId}}&brandNumber={{brandNumber}}&retry=false","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","whatsapp","message","status"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>The wamid</p>\n","type":"text/plain"},"key":"messageId","value":"{{messageId}}"},{"description":{"content":"<p>Sender number</p>\n","type":"text/plain"},"key":"brandNumber","value":"{{brandNumber}}"},{"key":"retry","value":"false"}],"variable":[]}},"response":[{"id":"cd0e79fd-67d3-4c9e-b5bd-eb0b4a34fb18","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/whatsapp/message/status?messageId={{messageId}}&brandNumber={{brandNumber}}&retry=false","host":["https://api.sendiee.com"],"path":["v2.0","whatsapp","message","status"],"query":[{"description":"The wamid","key":"messageId","value":"{{messageId}}"},{"description":"Sender number","key":"brandNumber","value":"{{brandNumber}}"},{"key":"retry","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"37512a6e-94dc-4024-8430-f0cdb05033cd"}],"id":"2954debc-6382-44a0-bd96-266a062f4cdb","_postman_id":"2954debc-6382-44a0-bd96-266a062f4cdb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Contacts","item":[{"name":"List Contacts","id":"ea72d713-817b-4c90-aee6-9d77e8a84b61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/contacts?page=1&limit=100","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts"],"host":["https://api.sendiee.com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"100"}],"variable":[]}},"response":[{"id":"f233b8c0-5892-42c4-a38b-4f1819fd18f1","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/contacts?page=1&limit=100","host":["https://api.sendiee.com"],"path":["v2.0","contacts"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"100"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ea72d713-817b-4c90-aee6-9d77e8a84b61"},{"name":"Create or Update Contact (Upsert)","id":"8bca4fcd-775b-40a0-b43e-41bf4a2f1ae7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"919876543210\",\n  \"contactName\": \"John Doe\",\n  \"email\": \"john@example.com\",\n  \"city\": \"Kochi\",\n  \"lead_category\": \"Interested\",\n  \"customFields\": {\n    \"birthday\": \"1995-06-01\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"580475ba-91ad-48fb-8cbf-b40d97a82d99","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"919876543210\",\n  \"contactName\": \"John Doe\",\n  \"email\": \"john@example.com\",\n  \"city\": \"Kochi\",\n  \"lead_category\": \"Interested\",\n  \"customFields\": {\n    \"birthday\": \"1995-06-01\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8bca4fcd-775b-40a0-b43e-41bf4a2f1ae7"},{"name":"Filter Contacts","id":"cf5f937f-8eed-477e-b773-d287aa968f94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"filter\": {\n    \"city\": \"Kochi\",\n    \"lead_category\": \"Interested\"\n  },\n  \"page\": 1,\n  \"limit\": 50\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/filter","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","filter"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"4686720e-5a44-4123-a433-ed74690d81a8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": {\n    \"city\": \"Kochi\",\n    \"lead_category\": \"Interested\"\n  },\n  \"page\": 1,\n  \"limit\": 50\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/filter"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cf5f937f-8eed-477e-b773-d287aa968f94"},{"name":"Get Contact by Phone","id":"92d8a18f-5e73-4e8e-a698-015e2268d33c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"919876543210\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/phone","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","phone"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"6ff6ad25-0988-48a4-aaa9-3269dd1091e7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"phone\": \"919876543210\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/phone"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"92d8a18f-5e73-4e8e-a698-015e2268d33c"},{"name":"List Contact Fields","id":"d1e609a6-ab8d-475e-bca0-1311b1352585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/contacts/fields?type=all","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","fields"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>default | custom | all</p>\n","type":"text/plain"},"key":"type","value":"all"}],"variable":[]}},"response":[{"id":"5c1282b3-5ab5-4b0a-befa-7dfe85ddcc30","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/contacts/fields?type=all","host":["https://api.sendiee.com"],"path":["v2.0","contacts","fields"],"query":[{"description":"default | custom | all","key":"type","value":"all"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d1e609a6-ab8d-475e-bca0-1311b1352585"},{"name":"List Custom Fields","id":"cc22f591-b233-48c2-830e-c7e696d888f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/contacts/custom_fields","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","custom_fields"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"c685f158-5d2a-4626-8625-82279a38b1b5","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/contacts/custom_fields"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cc22f591-b233-48c2-830e-c7e696d888f9"},{"name":"Create Custom Field","id":"d5c78c39-5386-4b78-855f-c1e62d9f5666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fieldName\": \"Birthday\",\n  \"fieldType\": \"date\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/custom_fields","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","custom_fields"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"edaa3654-18e7-448f-9b74-095f1a30410e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"fieldName\": \"Birthday\",\n  \"fieldType\": \"date\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/custom_fields"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d5c78c39-5386-4b78-855f-c1e62d9f5666"},{"name":"Update Custom Field","id":"0483c210-b240-4891-9794-d41e1b2e6aba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fieldName\": \"Date of Birth\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/custom_fields/:fieldId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","custom_fields",":fieldId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Custom field ObjectId</p>\n","type":"text/plain"},"type":"any","value":"string","key":"fieldId"}]}},"response":[{"id":"d3dd1f57-923d-4789-a016-202e3960f7ec","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"fieldName\": \"Date of Birth\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/contacts/custom_fields/:fieldId","host":["https://api.sendiee.com"],"path":["v2.0","contacts","custom_fields",":fieldId"],"variable":[{"key":"fieldId","value":"string","description":"Custom field ObjectId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0483c210-b240-4891-9794-d41e1b2e6aba"},{"name":"Delete Custom Field","id":"7f406980-098e-4dee-a907-011871d653b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.sendiee.com/v2.0/contacts/custom_fields/:fieldId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","custom_fields",":fieldId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Custom field ObjectId</p>\n","type":"text/plain"},"type":"any","value":"string","key":"fieldId"}]}},"response":[{"id":"eaf25b11-89ba-41f5-a5c2-bc101c21544e","name":"Success","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/contacts/custom_fields/:fieldId","host":["https://api.sendiee.com"],"path":["v2.0","contacts","custom_fields",":fieldId"],"variable":[{"key":"fieldId","value":"string","description":"Custom field ObjectId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7f406980-098e-4dee-a907-011871d653b2"},{"name":"List Contact Tags","id":"8a4443e4-ce6b-4cc1-9b20-69ff1086e945","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/contacts/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","tags"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"ef8f4f63-0550-495d-a080-bcfc5c567a98","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/contacts/tags"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8a4443e4-ce6b-4cc1-9b20-69ff1086e945"},{"name":"Create Contact Tag","id":"7e34a023-a742-4ddb-bbc6-63189cb9747b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Hot Lead\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/tags","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","tags"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"66a138f9-97bd-4f1b-868e-902a6dd6a378","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Hot Lead\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/tags"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7e34a023-a742-4ddb-bbc6-63189cb9747b"},{"name":"Rename Contact Tag","id":"fbda9a0f-84bb-43b1-a83e-7dc06d391051","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Warm Lead\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/contacts/tags/:tagId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","tags",":tagId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Tag ObjectId</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tagId"}]}},"response":[{"id":"59731a32-e576-4285-a2c4-aed3cf934a89","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Warm Lead\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/contacts/tags/:tagId","host":["https://api.sendiee.com"],"path":["v2.0","contacts","tags",":tagId"],"variable":[{"key":"tagId","value":"string","description":"Tag ObjectId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fbda9a0f-84bb-43b1-a83e-7dc06d391051"},{"name":"Delete Contact Tag","id":"d6db922b-6e9f-4283-b69f-16eb6b271e86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.sendiee.com/v2.0/contacts/tags/:tagId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","contacts","tags",":tagId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Tag ObjectId</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tagId"}]}},"response":[{"id":"ed92e451-2a33-4a26-9377-bc4188760d56","name":"Success","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/contacts/tags/:tagId","host":["https://api.sendiee.com"],"path":["v2.0","contacts","tags",":tagId"],"variable":[{"key":"tagId","value":"string","description":"Tag ObjectId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d6db922b-6e9f-4283-b69f-16eb6b271e86"}],"id":"50e13b97-5199-4fd6-a61f-84c5544cf636","_postman_id":"50e13b97-5199-4fd6-a61f-84c5544cf636","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Scheduled Messages","item":[{"name":"List Scheduled Messages","id":"b27e7fe2-e2d1-4865-9af6-61acdacda317","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/scheduled-messages?page=1&limit=50&status=scheduled","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","scheduled-messages"],"host":["https://api.sendiee.com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"description":{"content":"<p>scheduled|sent|failed|cancelled</p>\n","type":"text/plain"},"key":"status","value":"scheduled"}],"variable":[]}},"response":[{"id":"24bcfe19-cdd0-499c-9fb3-4ac9fcf81a95","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/scheduled-messages?page=1&limit=50&status=scheduled","host":["https://api.sendiee.com"],"path":["v2.0","scheduled-messages"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"50"},{"description":"scheduled|sent|failed|cancelled","key":"status","value":"scheduled"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b27e7fe2-e2d1-4865-9af6-61acdacda317"},{"name":"Get Scheduled Message","id":"5fbf2d8b-7c9c-4233-9094-bab67853bb8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/scheduled-messages/:scheduleId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","scheduled-messages",":scheduleId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"scheduleId"}]}},"response":[{"id":"66162cfd-059d-4c1c-81f6-045593c97782","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/scheduled-messages/:scheduleId","host":["https://api.sendiee.com"],"path":["v2.0","scheduled-messages",":scheduleId"],"variable":[{"key":"scheduleId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5fbf2d8b-7c9c-4233-9094-bab67853bb8e"},{"name":"Cancel Scheduled Message","id":"80f0d6ad-7cdc-48c2-a03d-710a788b0dd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.sendiee.com/v2.0/scheduled-messages/:scheduleId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","scheduled-messages",":scheduleId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"scheduleId"}]}},"response":[{"id":"167e5ef0-e40a-470f-8f2a-1d6f5c8591c9","name":"Success","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/scheduled-messages/:scheduleId","host":["https://api.sendiee.com"],"path":["v2.0","scheduled-messages",":scheduleId"],"variable":[{"key":"scheduleId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"80f0d6ad-7cdc-48c2-a03d-710a788b0dd3"}],"id":"917c73e2-cd11-47e1-8f0e-06bd945694d3","_postman_id":"917c73e2-cd11-47e1-8f0e-06bd945694d3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Templates","item":[{"name":"List Templates","id":"2b756052-db23-41f5-b3dc-dc3fd524837d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/templates?status=APPROVED&category=utility","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","templates"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>APPROVED|PENDING|REJECTED</p>\n","type":"text/plain"},"key":"status","value":"APPROVED"},{"description":{"content":"<p>authentication|marketing|utility</p>\n","type":"text/plain"},"key":"category","value":"utility"}],"variable":[]}},"response":[{"id":"2a9671bc-dd91-4f95-9a66-c0948362d0bd","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/templates?status=APPROVED&category=utility","host":["https://api.sendiee.com"],"path":["v2.0","templates"],"query":[{"description":"APPROVED|PENDING|REJECTED","key":"status","value":"APPROVED"},{"description":"authentication|marketing|utility","key":"category","value":"utility"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2b756052-db23-41f5-b3dc-dc3fd524837d"},{"name":"Create Template","id":"2d5cf885-5ff2-4e50-8fb6-10e95532af8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"name\": \"order_shipped_2026\",\n  \"language\": \"en_US\",\n  \"category\": \"UTILITY\",\n  \"body\": {\n    \"text\": \"Hi {{1}}, your order {{2}} has shipped!\",\n    \"exampleVariables\": [\n      \"John\",\n      \"#ORD1024\"\n    ]\n  },\n  \"footer\": {\n    \"text\": \"Sendiee\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/templates","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","templates"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"744b639c-86d8-44f0-9949-abe702c3956e","name":"Submitted to Meta","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"name\": \"order_shipped_2026\",\n  \"language\": \"en_US\",\n  \"category\": \"UTILITY\",\n  \"body\": {\n    \"text\": \"Hi {{1}}, your order {{2}} has shipped!\",\n    \"exampleVariables\": [\n      \"John\",\n      \"#ORD1024\"\n    ]\n  },\n  \"footer\": {\n    \"text\": \"Sendiee\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/templates"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2d5cf885-5ff2-4e50-8fb6-10e95532af8e"},{"name":"Get Template","id":"7e068d48-96f8-4e44-b9bc-b5c6c7ab7879","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/templates/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","templates",":id"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Sendiee template _id (24-hex ObjectId) OR numeric Meta templateId</p>\n","type":"text/plain"},"type":"any","value":"664a0bcd1234ef567890ab12","key":"id"}]}},"response":[{"id":"c0e1b0be-1f9a-4366-bbc7-d9c9f8ba7604","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/templates/:id","host":["https://api.sendiee.com"],"path":["v2.0","templates",":id"],"variable":[{"key":"id","value":"664a0bcd1234ef567890ab12","description":"Sendiee template _id (24-hex ObjectId) OR numeric Meta templateId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f3e089ce-1f10-4c75-b67a-f9a8cd453cd6","name":"INVALID_TEMPLATE_ID","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/templates/:id","host":["https://api.sendiee.com"],"path":["v2.0","templates",":id"],"variable":[{"key":"id","value":"664a0bcd1234ef567890ab12","description":"Sendiee template _id (24-hex ObjectId) OR numeric Meta templateId"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"47e646b1-c6da-4a66-b22f-a1f247d3d725","name":"TEMPLATE_NOT_FOUND","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/templates/:id","host":["https://api.sendiee.com"],"path":["v2.0","templates",":id"],"variable":[{"key":"id","value":"664a0bcd1234ef567890ab12","description":"Sendiee template _id (24-hex ObjectId) OR numeric Meta templateId"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7e068d48-96f8-4e44-b9bc-b5c6c7ab7879"}],"id":"10fbf68c-66a3-4b70-b46d-c65dccd8125d","_postman_id":"10fbf68c-66a3-4b70-b46d-c65dccd8125d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Campaigns","item":[{"name":"Preview Audience","id":"b4a0676e-2f51-426b-9cc1-55fb92bbb489","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"audience\": {\n    \"tags\": [],\n    \"filters\": {\n      \"optedOut\": false\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/campaigns/preview","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","campaigns","preview"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"394fb21a-e850-4bf6-b7ce-a1707fe1c7de","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"audience\": {\n    \"tags\": [],\n    \"filters\": {\n      \"optedOut\": false\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/campaigns/preview"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b4a0676e-2f51-426b-9cc1-55fb92bbb489"},{"name":"Create Campaign","id":"5bdf4974-957b-4ad0-b1f8-c30ebdf7dcd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"campaignName\": \"Diwali Sale 2026\",\n  \"templateName\": \"diwali_offer\",\n  \"language\": \"en\",\n  \"audience\": {\n    \"contacts\": [\n      {\n        \"phone\": \"919876543210\",\n        \"name\": \"Surya\"\n      },\n      {\n        \"phone\": \"918765432109\",\n        \"name\": \"Ravi\"\n      }\n    ]\n  },\n  \"variables\": {\n    \"header\": {\n      \"mediaUrl\": \"https://cdn.acme.com/diwali.jpg\"\n    },\n    \"body\": [\n      \"Surya\",\n      \"DIWALI25\"\n    ],\n    \"buttons\": [\n      {\n        \"index\": 0,\n        \"payload\": \"interested_diwali\"\n      }\n    ]\n  },\n  \"dryRun\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/campaigns","description":"<p>Create or schedule a campaign that sends an APPROVED template to a resolved audience. Personalization (backward compatible with the plain string form): each value in variables (a body[i], header.text, or a buttons[].params item) may be a static string sent to everyone OR a per-contact field reference { field, default? } where field is name|email|city|state|country|customFields. — e.g. body:[{field:name}] gives each lead their own name in {{1}}. Per-contact values can also be set on each audience.contacts[] entry via its own variables block (raw-contacts mode); the top-level variables then supplies fallback defaults. Quick-reply payloads: variables.buttons[i].payload (max 256 chars) sets a custom QUICK_REPLY postback returned on the inbound click (surfaced in the campaign.button_click / campaign.reply automation events and to your AI) to tell apart identical button labels. Dry run: set dryRun:true (alias validateOnly) to validate the payload, resolve the audience, and return totalContacts plus a per-contact resolvedSample WITHOUT creating the campaign, consuming quota, or sending.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","campaigns"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"a473f505-3ec9-4248-a0fa-4dacd079a31a","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"campaignName\": \"Diwali Sale 2026\",\n  \"templateName\": \"diwali_offer\",\n  \"language\": \"en\",\n  \"audience\": {\n    \"contacts\": [\n      {\n        \"phone\": \"919876543210\",\n        \"name\": \"Surya\"\n      },\n      {\n        \"phone\": \"918765432109\",\n        \"name\": \"Ravi\"\n      }\n    ]\n  },\n  \"variables\": {\n    \"header\": {\n      \"mediaUrl\": \"https://cdn.acme.com/diwali.jpg\"\n    },\n    \"body\": [\n      \"Surya\",\n      \"DIWALI25\"\n    ],\n    \"buttons\": [\n      {\n        \"index\": 0,\n        \"payload\": \"interested_diwali\"\n      }\n    ]\n  },\n  \"dryRun\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/campaigns"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a5ff84b8-7ab8-4abf-83db-498d7db1ffb9","name":"Dry-run result when dryRun=true: { success, dryRun, data: { totalContacts, resolvedSample[] } } — no campaign is created.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"campaignName\": \"Diwali Sale 2026\",\n  \"templateName\": \"diwali_offer\",\n  \"language\": \"en\",\n  \"audience\": {\n    \"contacts\": [\n      {\n        \"phone\": \"919876543210\",\n        \"name\": \"Surya\"\n      },\n      {\n        \"phone\": \"918765432109\",\n        \"name\": \"Ravi\"\n      }\n    ]\n  },\n  \"variables\": {\n    \"header\": {\n      \"mediaUrl\": \"https://cdn.acme.com/diwali.jpg\"\n    },\n    \"body\": [\n      {\n        \"field\": \"name\",\n        \"default\": \"there\"\n      },\n      \"DIWALI25\"\n    ],\n    \"buttons\": [\n      {\n        \"index\": 0,\n        \"payload\": \"interested_diwali\"\n      }\n    ]\n  },\n  \"dryRun\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/campaigns"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a8185dfc-504d-42e1-9c5a-dbc1a7d71b98","name":"CAMPAIGN_EMPTY_AUDIENCE — audience resolved to 0 contacts","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"campaignName\": \"Diwali Sale 2026\",\n  \"templateName\": \"diwali_offer\",\n  \"language\": \"en\",\n  \"audience\": {\n    \"contacts\": [\n      {\n        \"phone\": \"919876543210\",\n        \"name\": \"Surya\"\n      },\n      {\n        \"phone\": \"918765432109\",\n        \"name\": \"Ravi\"\n      }\n    ]\n  },\n  \"variables\": {\n    \"header\": {\n      \"mediaUrl\": \"https://cdn.acme.com/diwali.jpg\"\n    },\n    \"body\": [\n      {\n        \"field\": \"name\",\n        \"default\": \"there\"\n      },\n      \"DIWALI25\"\n    ],\n    \"buttons\": [\n      {\n        \"index\": 0,\n        \"payload\": \"interested_diwali\"\n      }\n    ]\n  },\n  \"dryRun\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/campaigns"},"status":"Bad Request","code":400,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fb5d7437-05b5-47b2-adb4-349f057da1d8","name":"CAMPAIGN_VARIABLES_INVALID — variables do not match the template; see details[]","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"brandNumber\": \"{{brandNumber}}\",\n  \"campaignName\": \"Diwali Sale 2026\",\n  \"templateName\": \"diwali_offer\",\n  \"language\": \"en\",\n  \"audience\": {\n    \"contacts\": [\n      {\n        \"phone\": \"919876543210\",\n        \"name\": \"Surya\"\n      },\n      {\n        \"phone\": \"918765432109\",\n        \"name\": \"Ravi\"\n      }\n    ]\n  },\n  \"variables\": {\n    \"header\": {\n      \"mediaUrl\": \"https://cdn.acme.com/diwali.jpg\"\n    },\n    \"body\": [\n      {\n        \"field\": \"name\",\n        \"default\": \"there\"\n      },\n      \"DIWALI25\"\n    ],\n    \"buttons\": [\n      {\n        \"index\": 0,\n        \"payload\": \"interested_diwali\"\n      }\n    ]\n  },\n  \"dryRun\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/campaigns"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5bdf4974-957b-4ad0-b1f8-c30ebdf7dcd2"},{"name":"List Campaigns","id":"39e68c16-c448-48ed-8b73-b33dbb911409","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/campaigns?page=1&limit=20&status=completed","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","campaigns"],"host":["https://api.sendiee.com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"20"},{"description":{"content":"<p>draft|scheduled|processing|completed|failed|paused|cancelled</p>\n","type":"text/plain"},"key":"status","value":"completed"}],"variable":[]}},"response":[{"id":"55a4fa28-9905-41f4-a261-a5f0b299ff5e","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/campaigns?page=1&limit=20&status=completed","host":["https://api.sendiee.com"],"path":["v2.0","campaigns"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"20"},{"description":"draft|scheduled|processing|completed|failed|paused|cancelled","key":"status","value":"completed"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"39e68c16-c448-48ed-8b73-b33dbb911409"},{"name":"Campaign Report","id":"eed4ef35-0fc5-4a82-88da-20478a71c1cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/campaigns/:campaignId/report","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","campaigns",":campaignId","report"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"campaignId"}]}},"response":[{"id":"2689057e-2eb0-4568-a13b-9a12cf2dedf4","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/campaigns/:campaignId/report","host":["https://api.sendiee.com"],"path":["v2.0","campaigns",":campaignId","report"],"variable":[{"key":"campaignId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eed4ef35-0fc5-4a82-88da-20478a71c1cf"},{"name":"Cancel Campaign","id":"cd7c5601-8e05-4128-8e62-b6ea0906dbc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/campaigns/:campaignId/cancel","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","campaigns",":campaignId","cancel"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"campaignId"}]}},"response":[{"id":"686408a9-0b65-4870-a969-afbed84f875e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/campaigns/:campaignId/cancel","host":["https://api.sendiee.com"],"path":["v2.0","campaigns",":campaignId","cancel"],"variable":[{"key":"campaignId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cd7c5601-8e05-4128-8e62-b6ea0906dbc4"}],"id":"7856600b-9ce2-45c5-9d64-f603bf100307","_postman_id":"7856600b-9ce2-45c5-9d64-f603bf100307","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Assistants","item":[{"name":"Options","id":"fe37a8b1-b1c0-46d5-af83-edce87f7d1db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/assistants/options","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants","options"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"9f34eb8a-98c8-4101-a165-3c5d26231b05","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/assistants/options"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fe37a8b1-b1c0-46d5-af83-edce87f7d1db"},{"name":"List Assistants","id":"bfbf7fc3-cc0c-465f-945b-e660415ec477","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/assistants?platform=whatsapp&page=1&limit=20","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>whatsapp|instagram|messenger</p>\n","type":"text/plain"},"key":"platform","value":"whatsapp"},{"key":"page","value":"1"},{"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"b31f2bca-f5ea-4526-86c2-a750ea80e813","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/assistants?platform=whatsapp&page=1&limit=20","host":["https://api.sendiee.com"],"path":["v2.0","assistants"],"query":[{"description":"whatsapp|instagram|messenger","key":"platform","value":"whatsapp"},{"key":"page","value":"1"},{"key":"limit","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bfbf7fc3-cc0c-465f-945b-e660415ec477"},{"name":"Create Assistant","id":"eec8581e-6bd3-483b-9622-84ab08e91c13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Sales Assistant\",\n  \"provider\": \"gemini\",\n  \"model\": \"gemini-3-flash-preview\",\n  \"systemPrompt\": \"You are a helpful sales assistant.\",\n  \"temperature\": 0.5,\n  \"maxTokens\": 1000\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/assistants","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"059ce2d7-a3f3-4cac-b27b-a4b9976439c1","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Sales Assistant\",\n  \"provider\": \"gemini\",\n  \"model\": \"gemini-3-flash-preview\",\n  \"systemPrompt\": \"You are a helpful sales assistant.\",\n  \"temperature\": 0.5,\n  \"maxTokens\": 1000\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/assistants"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eec8581e-6bd3-483b-9622-84ab08e91c13"},{"name":"Get Assistant","id":"cbda1ee2-1ad5-4544-8711-cbbbf8a84514","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/assistants/:modelId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants",":modelId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"modelId"}]}},"response":[{"id":"44f6dd65-b137-4a03-ad24-6ddc392af6ee","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/assistants/:modelId","host":["https://api.sendiee.com"],"path":["v2.0","assistants",":modelId"],"variable":[{"key":"modelId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cbda1ee2-1ad5-4544-8711-cbbbf8a84514"},{"name":"Update Assistant","id":"6f03665e-fcee-43de-837e-f3e01c0a7d3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"temperature\": 0.4\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/assistants/:modelId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants",":modelId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"modelId"}]}},"response":[{"id":"8407be3a-a6e3-4f8e-aa2a-94105e56fb0d","name":"Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"temperature\": 0.4\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/assistants/:modelId","host":["https://api.sendiee.com"],"path":["v2.0","assistants",":modelId"],"variable":[{"key":"modelId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6f03665e-fcee-43de-837e-f3e01c0a7d3d"},{"name":"Delete Assistant","id":"e08b322e-f57a-4d16-a8b5-2cb60fcecb53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.sendiee.com/v2.0/assistants/:modelId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants",":modelId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"modelId"}]}},"response":[{"id":"6e4c226f-0ebc-425f-8652-d936cbc0e85d","name":"Success","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/assistants/:modelId","host":["https://api.sendiee.com"],"path":["v2.0","assistants",":modelId"],"variable":[{"key":"modelId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e08b322e-f57a-4d16-a8b5-2cb60fcecb53"},{"name":"Toggle Assistant","id":"901d6641-6a05-40d4-b0dd-bff77665e831","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isActive\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/assistants/:modelId/toggle","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants",":modelId","toggle"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"modelId"}]}},"response":[{"id":"24c0c743-548c-40a4-b5ba-19a02d1c22f3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"isActive\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/assistants/:modelId/toggle","host":["https://api.sendiee.com"],"path":["v2.0","assistants",":modelId","toggle"],"variable":[{"key":"modelId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"901d6641-6a05-40d4-b0dd-bff77665e831"},{"name":"Edit History","id":"894b0ca4-7d27-47c4-b7bf-7a614de85e18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/assistants/:modelId/history","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants",":modelId","history"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"modelId"}]}},"response":[{"id":"e4d2b38c-2870-4aeb-b4ac-52d2891bab58","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/assistants/:modelId/history","host":["https://api.sendiee.com"],"path":["v2.0","assistants",":modelId","history"],"variable":[{"key":"modelId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"894b0ca4-7d27-47c4-b7bf-7a614de85e18"},{"name":"Restore","id":"f4cd24e7-f318-430b-bb57-2388e8561d6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"versionNumber\": 2,\n  \"clearChatHistory\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/assistants/:modelId/restore","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","assistants",":modelId","restore"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"modelId"}]}},"response":[{"id":"cc3d256f-642f-4979-95b5-c04b88c93d25","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"versionNumber\": 2,\n  \"clearChatHistory\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/assistants/:modelId/restore","host":["https://api.sendiee.com"],"path":["v2.0","assistants",":modelId","restore"],"variable":[{"key":"modelId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f4cd24e7-f318-430b-bb57-2388e8561d6b"}],"id":"4a9f7364-0ebe-4d9d-9680-c7bc27dc1519","_postman_id":"4a9f7364-0ebe-4d9d-9680-c7bc27dc1519","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Tools","item":[{"name":"Get Schema","id":"245c8be5-9c83-4c59-bfff-19f02629d118","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/tools/schema?type=shopify","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools","schema"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>Omit for all 8 types</p>\n","type":"text/plain"},"key":"type","value":"shopify"}],"variable":[]}},"response":[{"id":"0c731be8-7596-468e-8136-04a0a1126181","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/tools/schema?type=shopify","host":["https://api.sendiee.com"],"path":["v2.0","tools","schema"],"query":[{"description":"Omit for all 8 types","key":"type","value":"shopify"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"245c8be5-9c83-4c59-bfff-19f02629d118"},{"name":"List Tools","id":"7d365f27-6f52-4523-96ab-e60aa13c323c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/tools?toolType=function&isActive=true&page=1&limit=20","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools"],"host":["https://api.sendiee.com"],"query":[{"key":"toolType","value":"function"},{"key":"isActive","value":"true"},{"key":"page","value":"1"},{"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"6bb9e025-c5e0-4b7f-ae16-a6766fdef2fe","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/tools?toolType=function&isActive=true&page=1&limit=20","host":["https://api.sendiee.com"],"path":["v2.0","tools"],"query":[{"key":"toolType","value":"function"},{"key":"isActive","value":"true"},{"key":"page","value":"1"},{"key":"limit","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7d365f27-6f52-4523-96ab-e60aa13c323c"},{"name":"Create Tool","id":"793355cb-cb97-4cff-aaaa-cd59ff1aee09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"welcome_message\",\n  \"description\": \"Trigger when a user starts the conversation\",\n  \"toolType\": \"static_tool\",\n  \"response\": \"Hi! Welcome to our store. How can I help you today?\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/tools","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"f9946684-7a3f-4f0b-8e1c-da1481fe5042","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"welcome_message\",\n  \"description\": \"Trigger when a user starts the conversation\",\n  \"toolType\": \"static_tool\",\n  \"response\": \"Hi! Welcome to our store. How can I help you today?\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/tools"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"793355cb-cb97-4cff-aaaa-cd59ff1aee09"},{"name":"Get Tool","id":"42b21967-832a-4283-a856-a9a6f312975e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/tools/:toolId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools",":toolId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"toolId"}]}},"response":[{"id":"09f41629-3c0b-49ce-804c-8fb697d5af01","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/tools/:toolId","host":["https://api.sendiee.com"],"path":["v2.0","tools",":toolId"],"variable":[{"key":"toolId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"42b21967-832a-4283-a856-a9a6f312975e"},{"name":"Update Tool","id":"7b569643-b8d7-48de-9797-9fbaa86fe17b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"Updated description\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/tools/:toolId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools",":toolId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"toolId"}]}},"response":[{"id":"f6a9ebe4-a36e-4211-b135-1ce8ab51b95e","name":"Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"Updated description\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/tools/:toolId","host":["https://api.sendiee.com"],"path":["v2.0","tools",":toolId"],"variable":[{"key":"toolId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7b569643-b8d7-48de-9797-9fbaa86fe17b"},{"name":"Delete Tool","id":"42a28cd0-5e0e-417f-b48b-71f135091396","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.sendiee.com/v2.0/tools/:toolId","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools",":toolId"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"toolId"}]}},"response":[{"id":"dd589cd0-2308-45c2-acab-b59bb46ee000","name":"Success","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/tools/:toolId","host":["https://api.sendiee.com"],"path":["v2.0","tools",":toolId"],"variable":[{"key":"toolId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"42a28cd0-5e0e-417f-b48b-71f135091396"},{"name":"Toggle Tool","id":"689a66e1-0652-45ac-95a3-81cf93483d81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isActive\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/tools/:toolId/toggle","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools",":toolId","toggle"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"toolId"}]}},"response":[{"id":"d9c4d05a-11f1-4c9e-9380-0b582af38e7f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"isActive\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/tools/:toolId/toggle","host":["https://api.sendiee.com"],"path":["v2.0","tools",":toolId","toggle"],"variable":[{"key":"toolId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"689a66e1-0652-45ac-95a3-81cf93483d81"},{"name":"History","id":"2b051ad5-f0ec-457d-a6ca-c5d3fd0fda13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/tools/:toolId/history","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools",":toolId","history"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"toolId"}]}},"response":[{"id":"eb618ee5-53a5-4e30-995c-2b21cfea9f51","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/tools/:toolId/history","host":["https://api.sendiee.com"],"path":["v2.0","tools",":toolId","history"],"variable":[{"key":"toolId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2b051ad5-f0ec-457d-a6ca-c5d3fd0fda13"},{"name":"Restore","id":"15c536df-27f4-4c05-a48d-9acf5681f229","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"versionNumber\": 2\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/tools/:toolId/restore","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools",":toolId","restore"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"type":"any","value":"string","key":"toolId"}]}},"response":[{"id":"5e566d32-f34e-4c05-b4cf-ad19a2ae2c52","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"versionNumber\": 2\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/tools/:toolId/restore","host":["https://api.sendiee.com"],"path":["v2.0","tools",":toolId","restore"],"variable":[{"key":"toolId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"15c536df-27f4-4c05-a48d-9acf5681f229"},{"name":"Execution Logs (Runs)","id":"010d9939-c722-47b0-932b-a487b10b7f79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/tools/:toolId/runs?page=1&limit=20","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","tools",":toolId","runs"],"host":["https://api.sendiee.com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"20"}],"variable":[{"type":"any","value":"string","key":"toolId"}]}},"response":[{"id":"d9fd3b98-5ec9-47de-8ef9-744553fc6c1d","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/tools/:toolId/runs?page=1&limit=20","host":["https://api.sendiee.com"],"path":["v2.0","tools",":toolId","runs"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"20"}],"variable":[{"key":"toolId","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"010d9939-c722-47b0-932b-a487b10b7f79"}],"id":"3dbf075f-dab9-443d-ae2b-ee6f961826c1","_postman_id":"3dbf075f-dab9-443d-ae2b-ee6f961826c1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Chats","item":[{"name":"Chat History","id":"79efe52c-1bf8-44b0-b4ea-0ad14a4af40b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/chats/history?phone=919876543210&limit=20&before=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","chats","history"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>One of phone/contactId required</p>\n","type":"text/plain"},"key":"phone","value":"919876543210"},{"key":"limit","value":"20"},{"description":{"content":"<p>ISO cursor</p>\n","type":"text/plain"},"key":"before","value":""}],"variable":[]}},"response":[{"id":"3c99778f-e219-4d56-9118-d850901cc5a1","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/chats/history?phone=919876543210&limit=20&before=","host":["https://api.sendiee.com"],"path":["v2.0","chats","history"],"query":[{"description":"One of phone/contactId required","key":"phone","value":"919876543210"},{"key":"limit","value":"20"},{"description":"ISO cursor","key":"before","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"79efe52c-1bf8-44b0-b4ea-0ad14a4af40b"},{"name":"List Conversations","id":"96748bec-2c57-4068-8218-37d032a661d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/chats/conversations?archived=false&page=1&limit=20","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","chats","conversations"],"host":["https://api.sendiee.com"],"query":[{"key":"archived","value":"false"},{"key":"page","value":"1"},{"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"9b9bbf65-58e7-404a-a8ac-bb99cb5502a6","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/chats/conversations?archived=false&page=1&limit=20","host":["https://api.sendiee.com"],"path":["v2.0","chats","conversations"],"query":[{"key":"archived","value":"false"},{"key":"page","value":"1"},{"key":"limit","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"96748bec-2c57-4068-8218-37d032a661d8"}],"id":"ef81232d-66b4-4f5c-ab23-f71b1e018fc3","_postman_id":"ef81232d-66b4-4f5c-ab23-f71b1e018fc3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Insights","item":[{"name":"Daily Summary","id":"e2e4bbc5-2070-4bc3-b247-037980a676de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/insights/daily-summary?from=2026-04-01&to=2026-04-30&platform=whatsapp","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","insights","daily-summary"],"host":["https://api.sendiee.com"],"query":[{"key":"from","value":"2026-04-01"},{"key":"to","value":"2026-04-30"},{"description":{"content":"<p>whatsapp|instagram|messenger|all</p>\n","type":"text/plain"},"key":"platform","value":"whatsapp"}],"variable":[]}},"response":[{"id":"2810bd61-1c42-4132-8761-7f681286e560","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/insights/daily-summary?from=2026-04-01&to=2026-04-30&platform=whatsapp","host":["https://api.sendiee.com"],"path":["v2.0","insights","daily-summary"],"query":[{"key":"from","value":"2026-04-01"},{"key":"to","value":"2026-04-30"},{"description":"whatsapp|instagram|messenger|all","key":"platform","value":"whatsapp"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e2e4bbc5-2070-4bc3-b247-037980a676de"},{"name":"Pipeline Snapshots","id":"6c78fd58-2617-4749-900a-488cde58f1e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/insights/pipeline-snapshots?platform=whatsapp&from=2026-04-01&to=2026-04-30","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","insights","pipeline-snapshots"],"host":["https://api.sendiee.com"],"query":[{"key":"platform","value":"whatsapp"},{"key":"from","value":"2026-04-01"},{"key":"to","value":"2026-04-30"}],"variable":[]}},"response":[{"id":"c897cf29-7a1d-48c2-baad-90de4e4005e4","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/insights/pipeline-snapshots?platform=whatsapp&from=2026-04-01&to=2026-04-30","host":["https://api.sendiee.com"],"path":["v2.0","insights","pipeline-snapshots"],"query":[{"key":"platform","value":"whatsapp"},{"key":"from","value":"2026-04-01"},{"key":"to","value":"2026-04-30"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6c78fd58-2617-4749-900a-488cde58f1e0"}],"id":"3fb037f1-e42d-4a6a-b75e-1c051f9e5f4e","_postman_id":"3fb037f1-e42d-4a6a-b75e-1c051f9e5f4e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Billing","item":[{"name":"Current Plan & Limits","id":"8ba69e02-090c-44b8-9d33-510bed9f5a4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/billing/plan","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","billing","plan"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"25b44e59-c253-4032-9727-ddd805c961dc","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/billing/plan"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8ba69e02-090c-44b8-9d33-510bed9f5a4e"},{"name":"Subscription History","id":"c4bb8c97-58bd-4e99-ac98-ec8189575878","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/billing/subscriptions?status=active&page=1&limit=20","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","billing","subscriptions"],"host":["https://api.sendiee.com"],"query":[{"key":"status","value":"active"},{"key":"page","value":"1"},{"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"cb7d1d56-d3d8-42a3-831e-cfd1e8fb7e6e","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/billing/subscriptions?status=active&page=1&limit=20","host":["https://api.sendiee.com"],"path":["v2.0","billing","subscriptions"],"query":[{"key":"status","value":"active"},{"key":"page","value":"1"},{"key":"limit","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c4bb8c97-58bd-4e99-ac98-ec8189575878"},{"name":"Payment History","id":"0eb7852d-7b6f-4afc-aa1f-e7615fdacf38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/billing/payments?status=SUCCESS&page=1&limit=20","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","billing","payments"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>PENDING|SUCCESS|FAILED</p>\n","type":"text/plain"},"key":"status","value":"SUCCESS"},{"key":"page","value":"1"},{"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"6dd34ba6-2dea-43a0-800b-86e3331cfd01","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/billing/payments?status=SUCCESS&page=1&limit=20","host":["https://api.sendiee.com"],"path":["v2.0","billing","payments"],"query":[{"description":"PENDING|SUCCESS|FAILED","key":"status","value":"SUCCESS"},{"key":"page","value":"1"},{"key":"limit","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0eb7852d-7b6f-4afc-aa1f-e7615fdacf38"}],"id":"61a88981-273d-4d0e-b309-16fc9d20f051","_postman_id":"61a88981-273d-4d0e-b309-16fc9d20f051","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Leads","item":[{"name":"List Lead Categories","id":"807fc592-89f8-4397-a822-81bfc1e87a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/leads/categories","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","categories"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"113db373-1073-45fd-a3ee-12fcbb40da2e","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/leads/categories"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"807fc592-89f8-4397-a822-81bfc1e87a8c"},{"name":"Get Lead Segmentation Config","id":"813c0b7a-d360-452a-8da6-87c7d7644c50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/leads/segmentation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","segmentation"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"a583b4a1-95aa-45df-872d-2d90bde89684","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/leads/segmentation"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"813c0b7a-d360-452a-8da6-87c7d7644c50"},{"name":"Replace / Apply Lead Segmentation Config","id":"fb6614b5-77bc-465e-9011-1919c2381012","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isCategorizationEnabled\": true,\n  \"model\": \"gpt-5-mini\",\n  \"provider\": \"openai\",\n  \"categories\": [\n    {\n      \"name\": \"Hot Lead\",\n      \"description\": \"Ready to buy.\",\n      \"followups\": [\n        {\n          \"delay\": 600,\n          \"prompt\": \"Nudge to checkout.\",\n          \"active\": true\n        }\n      ]\n    },\n    {\n      \"name\": \"Cold Lead\",\n      \"description\": \"Just browsing.\"\n    }\n  ],\n  \"defaultFollowups\": [\n    {\n      \"delay\": 3600,\n      \"prompt\": \"Re-engage the customer.\",\n      \"active\": true\n    }\n  ],\n  \"audienceSegments\": [\n    {\n      \"key\": \"budget\",\n      \"name\": \"Budget\",\n      \"valueType\": \"text\",\n      \"description\": \"Stated budget.\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/segmentation","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","segmentation"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"541bbd66-3fdd-4cd4-ba72-a0a28248c5d1","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"isCategorizationEnabled\": true,\n  \"model\": \"gpt-5-mini\",\n  \"provider\": \"openai\",\n  \"categories\": [\n    {\n      \"name\": \"Hot Lead\",\n      \"description\": \"Ready to buy.\",\n      \"followups\": [\n        {\n          \"delay\": 600,\n          \"prompt\": \"Nudge to checkout.\",\n          \"active\": true\n        }\n      ]\n    },\n    {\n      \"name\": \"Cold Lead\",\n      \"description\": \"Just browsing.\"\n    }\n  ],\n  \"defaultFollowups\": [\n    {\n      \"delay\": 3600,\n      \"prompt\": \"Re-engage the customer.\",\n      \"active\": true\n    }\n  ],\n  \"audienceSegments\": [\n    {\n      \"key\": \"budget\",\n      \"name\": \"Budget\",\n      \"valueType\": \"text\",\n      \"description\": \"Stated budget.\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/segmentation"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3710488c-737b-4a52-bc6a-4f5f2995fb64","name":"PLAN_LIMIT_EXCEEDED | PLAN_FEATURE_DISABLED","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"isCategorizationEnabled\": true,\n  \"model\": \"gpt-5-mini\",\n  \"provider\": \"openai\",\n  \"categories\": [\n    {\n      \"name\": \"Hot Lead\",\n      \"description\": \"Ready to buy.\",\n      \"followups\": [\n        {\n          \"delay\": 600,\n          \"prompt\": \"Nudge to checkout.\",\n          \"active\": true\n        }\n      ]\n    },\n    {\n      \"name\": \"Cold Lead\",\n      \"description\": \"Just browsing.\"\n    }\n  ],\n  \"defaultFollowups\": [\n    {\n      \"delay\": 3600,\n      \"prompt\": \"Re-engage the customer.\",\n      \"active\": true\n    }\n  ],\n  \"audienceSegments\": [\n    {\n      \"key\": \"budget\",\n      \"name\": \"Budget\",\n      \"valueType\": \"text\",\n      \"description\": \"Stated budget.\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/segmentation"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fb6614b5-77bc-465e-9011-1919c2381012"},{"name":"Update Segmentation Settings","id":"75a468b1-dab4-4498-adc3-da5907e02c54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isCategorizationEnabled\": true,\n  \"isFollowupEnabled\": true,\n  \"delay\": 1800,\n  \"model\": \"gpt-5-mini\",\n  \"provider\": \"openai\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/segmentation/settings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","segmentation","settings"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"7ca4d48c-017e-4f72-8bb6-92a73e0e7ccc","name":"Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"isCategorizationEnabled\": true,\n  \"isFollowupEnabled\": true,\n  \"delay\": 1800,\n  \"model\": \"gpt-5-mini\",\n  \"provider\": \"openai\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/segmentation/settings"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8de925b4-8a16-4411-a31d-91b74e6449cc","name":"PLAN_FEATURE_DISABLED","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"isCategorizationEnabled\": true,\n  \"isFollowupEnabled\": true,\n  \"delay\": 1800,\n  \"model\": \"gpt-5-mini\",\n  \"provider\": \"openai\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/segmentation/settings"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"75a468b1-dab4-4498-adc3-da5907e02c54"},{"name":"Create Lead Category","id":"0ed62a75-5fcb-4e69-9a64-2ecdbee2764e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Hot Lead\",\n  \"description\": \"Ready to buy, asked about pricing.\",\n  \"fuDisabled\": false,\n  \"followups\": [\n    {\n      \"delay\": 600,\n      \"prompt\": \"Nudge them to complete the purchase.\",\n      \"active\": true\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/categories","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","categories"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"3815dcf3-1df6-45f9-9997-82a7b3292ff2","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Hot Lead\",\n  \"description\": \"Ready to buy, asked about pricing.\",\n  \"fuDisabled\": false,\n  \"followups\": [\n    {\n      \"delay\": 600,\n      \"prompt\": \"Nudge them to complete the purchase.\",\n      \"active\": true\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/categories"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0f8baf53-6e43-4cf8-9f01-07bb17b632af","name":"CATEGORY_EXISTS","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Hot Lead\",\n  \"description\": \"Ready to buy, asked about pricing.\",\n  \"fuDisabled\": false,\n  \"followups\": [\n    {\n      \"delay\": 600,\n      \"prompt\": \"Nudge them to complete the purchase.\",\n      \"active\": true\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/categories"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0ed62a75-5fcb-4e69-9a64-2ecdbee2764e"},{"name":"Get Lead Category","id":"3c29d1bd-8139-427f-a11a-e4878c107ec7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/leads/categories/:name","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","categories",":name"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Category name (case-insensitive)</p>\n","type":"text/plain"},"type":"any","value":"Hot Lead","key":"name"}]}},"response":[{"id":"f41d5a9a-1e2b-474c-b6f7-53a5d1ad87a1","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/leads/categories/:name","host":["https://api.sendiee.com"],"path":["v2.0","leads","categories",":name"],"variable":[{"key":"name","value":"Hot Lead","description":"Category name (case-insensitive)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9dd570c1-d9de-44ac-941b-278aceac9278","name":"CATEGORY_NOT_FOUND","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/leads/categories/:name","host":["https://api.sendiee.com"],"path":["v2.0","leads","categories",":name"],"variable":[{"key":"name","value":"Hot Lead","description":"Category name (case-insensitive)"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3c29d1bd-8139-427f-a11a-e4878c107ec7"},{"name":"Update / Rename Lead Category","id":"84a9c24e-6da1-40e8-9ea7-12175aad40ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Ready to Buy\",\n  \"description\": \"Explicitly asked to purchase.\",\n  \"fuDisabled\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/categories/:name","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","categories",":name"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Category name (case-insensitive)</p>\n","type":"text/plain"},"type":"any","value":"Hot Lead","key":"name"}]}},"response":[{"id":"7c0db6ff-ff96-4563-b712-c0050c3b24de","name":"Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Ready to Buy\",\n  \"description\": \"Explicitly asked to purchase.\",\n  \"fuDisabled\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/leads/categories/:name","host":["https://api.sendiee.com"],"path":["v2.0","leads","categories",":name"],"variable":[{"key":"name","value":"Hot Lead","description":"Category name (case-insensitive)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"def6cd21-1371-4c37-a2d3-5cc7d42d682c","name":"CATEGORY_EXISTS","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Ready to Buy\",\n  \"description\": \"Explicitly asked to purchase.\",\n  \"fuDisabled\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/leads/categories/:name","host":["https://api.sendiee.com"],"path":["v2.0","leads","categories",":name"],"variable":[{"key":"name","value":"Hot Lead","description":"Category name (case-insensitive)"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"84a9c24e-6da1-40e8-9ea7-12175aad40ae"},{"name":"Delete Lead Category","id":"a00ba42e-1b5c-492b-aff9-3cb031aff332","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.sendiee.com/v2.0/leads/categories/:name?reassignTo=Hot Lead","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","categories",":name"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>Existing category to move in-use contacts to, or empty to clear</p>\n","type":"text/plain"},"key":"reassignTo","value":"Hot Lead"}],"variable":[{"description":{"content":"<p>Category name (case-insensitive)</p>\n","type":"text/plain"},"type":"any","value":"Hot Lead","key":"name"}]}},"response":[{"id":"8b18f977-ab5d-4611-ad3f-3d7ea43077b7","name":"Success","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/leads/categories/:name?reassignTo=Hot Lead","host":["https://api.sendiee.com"],"path":["v2.0","leads","categories",":name"],"query":[{"description":"Existing category to move in-use contacts to, or empty to clear","key":"reassignTo","value":"Hot Lead"}],"variable":[{"key":"name","value":"Hot Lead","description":"Category name (case-insensitive)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c43583ea-d123-41ef-94e2-20612e0619e0","name":"CATEGORY_IN_USE","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/leads/categories/:name?reassignTo=Hot Lead","host":["https://api.sendiee.com"],"path":["v2.0","leads","categories",":name"],"query":[{"description":"Existing category to move in-use contacts to, or empty to clear","key":"reassignTo","value":"Hot Lead"}],"variable":[{"key":"name","value":"Hot Lead","description":"Category name (case-insensitive)"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a00ba42e-1b5c-492b-aff9-3cb031aff332"},{"name":"Replace Category Follow-ups","id":"7b50d19c-4aa5-43ff-86b1-2f54c7fcccd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"followups\": [\n    {\n      \"delay\": 600,\n      \"prompt\": \"Nudge them to complete the purchase.\",\n      \"active\": true\n    },\n    {\n      \"delay\": 3600,\n      \"prompt\": \"Offer help with checkout.\",\n      \"active\": true\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/categories/:name/followups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","categories",":name","followups"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Category name (case-insensitive)</p>\n","type":"text/plain"},"type":"any","value":"Hot Lead","key":"name"}]}},"response":[{"id":"e7aa13a1-4469-4ac6-8b84-f177ab0847e1","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"followups\": [\n    {\n      \"delay\": 600,\n      \"prompt\": \"Nudge them to complete the purchase.\",\n      \"active\": true\n    },\n    {\n      \"delay\": 3600,\n      \"prompt\": \"Offer help with checkout.\",\n      \"active\": true\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/leads/categories/:name/followups","host":["https://api.sendiee.com"],"path":["v2.0","leads","categories",":name","followups"],"variable":[{"key":"name","value":"Hot Lead","description":"Category name (case-insensitive)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a3b9255a-ae82-4c9a-969f-8a2e56355c86","name":"CATEGORY_NOT_FOUND","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"followups\": [\n    {\n      \"delay\": 600,\n      \"prompt\": \"Nudge them to complete the purchase.\",\n      \"active\": true\n    },\n    {\n      \"delay\": 3600,\n      \"prompt\": \"Offer help with checkout.\",\n      \"active\": true\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/leads/categories/:name/followups","host":["https://api.sendiee.com"],"path":["v2.0","leads","categories",":name","followups"],"variable":[{"key":"name","value":"Hot Lead","description":"Category name (case-insensitive)"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7b50d19c-4aa5-43ff-86b1-2f54c7fcccd7"},{"name":"List Follow-ups","id":"4847bb59-d4f9-404c-a12b-ad2f30160a7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/leads/followups","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","followups"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"89bc9186-6b6e-40b3-b9e0-ce5312d07b66","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/leads/followups"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4847bb59-d4f9-404c-a12b-ad2f30160a7a"},{"name":"Replace Default Follow-ups","id":"3a8398ad-c9ca-49e8-a20c-b768ce74bfdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"followups\": [\n    {\n      \"delay\": 3600,\n      \"prompt\": \"Re-engage the customer.\",\n      \"active\": true\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/followups/default","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","followups","default"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"2958c831-4d9c-41dc-97b6-b963d686394b","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"followups\": [\n    {\n      \"delay\": 3600,\n      \"prompt\": \"Re-engage the customer.\",\n      \"active\": true\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/followups/default"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3a8398ad-c9ca-49e8-a20c-b768ce74bfdb"},{"name":"List Insights (Audience Segments)","id":"f2be6b05-4a2d-4987-b7fa-7ef2949d85f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/leads/insights","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","insights"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"22bb7927-e0e5-4840-a6c3-8a9f3974b79b","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/leads/insights"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f2be6b05-4a2d-4987-b7fa-7ef2949d85f3"},{"name":"Create Insight","id":"a5f6567e-bb9c-40d1-b980-751bcd06716f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"budget\",\n  \"name\": \"Budget\",\n  \"valueType\": \"text\",\n  \"description\": \"The customer's stated budget for the purchase.\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/insights","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","insights"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"4c1f81d9-028d-475d-a1fd-c2bd857dca4b","name":"Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"budget\",\n  \"name\": \"Budget\",\n  \"valueType\": \"text\",\n  \"description\": \"The customer's stated budget for the purchase.\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/insights"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"72e3a3cc-d4c0-4e09-886b-8c5ebbf600c2","name":"INSIGHT_EXISTS","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"budget\",\n  \"name\": \"Budget\",\n  \"valueType\": \"text\",\n  \"description\": \"The customer's stated budget for the purchase.\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/insights"},"status":"Conflict","code":409,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a5f6567e-bb9c-40d1-b980-751bcd06716f"},{"name":"Get Insight","id":"f530530b-da28-424b-aa3d-5fb4ec4ba738","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/leads/insights/:key","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","insights",":key"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Insight (audience segment) key</p>\n","type":"text/plain"},"type":"any","value":"budget","key":"key"}]}},"response":[{"id":"dbc55e5f-58cf-4e00-b85e-2628673758ff","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/leads/insights/:key","host":["https://api.sendiee.com"],"path":["v2.0","leads","insights",":key"],"variable":[{"key":"key","value":"budget","description":"Insight (audience segment) key"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c105ff26-8315-4948-9ac9-42c754cf1e98","name":"INSIGHT_NOT_FOUND","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/leads/insights/:key","host":["https://api.sendiee.com"],"path":["v2.0","leads","insights",":key"],"variable":[{"key":"key","value":"budget","description":"Insight (audience segment) key"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f530530b-da28-424b-aa3d-5fb4ec4ba738"},{"name":"Update Insight","id":"b32e8f53-9c64-4fd4-8789-6c542ad2225d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"valueType\": \"array\",\n  \"options\": [\n    \"low\",\n    \"medium\",\n    \"high\"\n  ],\n  \"description\": \"Budget tier.\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sendiee.com/v2.0/leads/insights/:key","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","insights",":key"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Insight (audience segment) key</p>\n","type":"text/plain"},"type":"any","value":"budget","key":"key"}]}},"response":[{"id":"3691d69a-2804-4efb-98d4-afcd1ff170f4","name":"Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"valueType\": \"array\",\n  \"options\": [\n    \"low\",\n    \"medium\",\n    \"high\"\n  ],\n  \"description\": \"Budget tier.\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sendiee.com/v2.0/leads/insights/:key","host":["https://api.sendiee.com"],"path":["v2.0","leads","insights",":key"],"variable":[{"key":"key","value":"budget","description":"Insight (audience segment) key"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b32e8f53-9c64-4fd4-8789-6c542ad2225d"},{"name":"Delete Insight","id":"90cc0c31-cdc4-4c7c-9cdc-3580909d094a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.sendiee.com/v2.0/leads/insights/:key","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","leads","insights",":key"],"host":["https://api.sendiee.com"],"query":[],"variable":[{"description":{"content":"<p>Insight (audience segment) key</p>\n","type":"text/plain"},"type":"any","value":"budget","key":"key"}]}},"response":[{"id":"91dd6fcd-bd38-4c61-bc0f-200b2d7590d2","name":"Success","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/leads/insights/:key","host":["https://api.sendiee.com"],"path":["v2.0","leads","insights",":key"],"variable":[{"key":"key","value":"budget","description":"Insight (audience segment) key"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"90cc0c31-cdc4-4c7c-9cdc-3580909d094a"}],"id":"c8357d35-598c-4c7d-a160-cf8584eb2336","_postman_id":"c8357d35-598c-4c7d-a160-cf8584eb2336","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Account","item":[{"name":"Wallet Balance","id":"f9c46fd0-d7df-4136-92ed-9fb32668c61c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/account/wallet/balance","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","account","wallet","balance"],"host":["https://api.sendiee.com"],"query":[],"variable":[]}},"response":[{"id":"3792e6df-16cb-4d12-8249-688e29d42296","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":"https://api.sendiee.com/v2.0/account/wallet/balance"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f9c46fd0-d7df-4136-92ed-9fb32668c61c"}],"id":"2330c05d-d5b0-426e-941d-7b2600ab8de4","_postman_id":"2330c05d-d5b0-426e-941d-7b2600ab8de4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}},{"name":"Channels","item":[{"name":"Channel Status","id":"827e75be-587f-412a-8fb0-c3e31d6833e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sendiee.com/v2.0/channels/status?channel=whatsapp&brandNumber={{brandNumber}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}},"urlObject":{"path":["v2.0","channels","status"],"host":["https://api.sendiee.com"],"query":[{"description":{"content":"<p>whatsapp|instagram|messenger</p>\n","type":"text/plain"},"key":"channel","value":"whatsapp"},{"key":"brandNumber","value":"{{brandNumber}}"}],"variable":[]}},"response":[{"id":"5b108eda-220c-45a2-929d-b2b14c63ec66","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://api.sendiee.com/v2.0/channels/status?channel=whatsapp&brandNumber={{brandNumber}}","host":["https://api.sendiee.com"],"path":["v2.0","channels","status"],"query":[{"description":"whatsapp|instagram|messenger","key":"channel","value":"whatsapp"},{"key":"brandNumber","value":"{{brandNumber}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"827e75be-587f-412a-8fb0-c3e31d6833e4"}],"id":"dbbba1d6-a37f-4e2e-b1ba-01ad38f1bf13","_postman_id":"dbbba1d6-a37f-4e2e-b1ba-01ad38f1bf13","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":true,"source":{"_postman_id":"8133345d-d2da-4c74-ac10-ff85665645d3","id":"8133345d-d2da-4c74-ac10-ff85665645d3","name":"Sendiee API (v2.0) — Synced","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]}},"variable":[{"key":"baseUrl","value":"https://api.sendiee.com","type":"any"}]}