{ "opencollection": "1.0.0", "info": { "name": "Thoughtly agent contact API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "items": [ { "info": { "name": "contact", "type": "folder" }, "items": [ { "info": { "name": "Get Contacts", "type": "http" }, "http": { "method": "GET", "url": "https://api.thoughtly.com/contact", "params": [ { "name": "search", "value": "", "type": "query" }, { "name": "phone_numbers_only", "value": "", "type": "query" }, { "name": "tags", "value": "", "type": "query" }, { "name": "excluded_tags", "value": "", "type": "query" }, { "name": "sort", "value": "", "type": "query" }, { "name": "sortDirection", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ] }, "docs": "Retrieves a list of Contacts. Supports filtering by tags, phone numbers, and search." }, { "info": { "name": "Create Contact", "type": "http" }, "http": { "method": "POST", "url": "https://api.thoughtly.com/contact/create", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Contact (a person you can call or message)." }, { "info": { "name": "Get Contact", "type": "http" }, "http": { "method": "GET", "url": "https://api.thoughtly.com/contact/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieve a single Contact by ID." }, { "info": { "name": "Delete Contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.thoughtly.com/contact/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Permanently deletes a Contact by ID." }, { "info": { "name": "Call A Contact", "type": "http" }, "http": { "method": "POST", "url": "https://api.thoughtly.com/contact/call", "body": { "type": "json", "data": "{}" } }, "docs": "Initiate a call with a Contact using a specific Agent (interview)." } ] } ], "bundled": true }