{ "opencollection": "1.0.0", "info": { "name": "SleekFlow Platform Companies Contacts API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "X-Sleekflow-ApiKey", "value": "{{X-Sleekflow-ApiKey}}", "placement": "header" } }, "items": [ { "info": { "name": "Contacts", "type": "folder" }, "items": [ { "info": { "name": "Get list of contacts", "type": "http" }, "http": { "method": "GET", "url": "https://api.sleekflow.io/v1/contacts", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of contacts with their contact information." }, { "info": { "name": "Add or update contact", "type": "http" }, "http": { "method": "POST", "url": "https://api.sleekflow.io/v1/contacts", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new contact or updates an existing contact matched by phone number or email." }, { "info": { "name": "Search contacts", "type": "http" }, "http": { "method": "POST", "url": "https://api.sleekflow.io/v1/contacts/search", "body": { "type": "json", "data": "{}" } }, "docs": "Searches contacts by filter criteria. Supports dynamic included fields to control which contact properties are returned." }, { "info": { "name": "Get contact", "type": "http" }, "http": { "method": "GET", "url": "https://api.sleekflow.io/v1/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path" } ] }, "docs": "Returns a single contact by its identifier." }, { "info": { "name": "Delete contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.sleekflow.io/v1/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path" } ] }, "docs": "Deletes a contact by its identifier." } ] } ], "bundled": true }