{ "opencollection": "1.0.0", "info": { "name": "Truto Admin Accounts Contacts API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Contacts", "type": "folder" }, "items": [ { "info": { "name": "List contacts", "type": "http" }, "http": { "method": "GET", "url": "https://api.truto.one/contacts", "params": [ { "name": "integrated_account_id", "value": "", "type": "query", "description": "The ID of the integrated account (connected CRM provider instance) to query. Required for all Unified API requests." }, { "name": "account_id", "value": "", "type": "query", "description": "Filter contacts by account ID." }, { "name": "cursor", "value": "", "type": "query", "description": "Cursor for pagination." }, { "name": "limit", "value": "", "type": "query", "description": "Number of results per page (max 100)." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List contact records from the connected CRM provider. Returns normalized contact data including name, email, phone, company, and associated account information." }, { "info": { "name": "Create contact", "type": "http" }, "http": { "method": "POST", "url": "https://api.truto.one/contacts", "params": [ { "name": "integrated_account_id", "value": "", "type": "query", "description": "The ID of the integrated account (connected CRM provider instance) to query. Required for all Unified API requests." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new contact in the connected CRM provider." }, { "info": { "name": "Get contact", "type": "http" }, "http": { "method": "GET", "url": "https://api.truto.one/contacts/:id", "params": [ { "name": "integrated_account_id", "value": "", "type": "query", "description": "The ID of the integrated account (connected CRM provider instance) to query. Required for all Unified API requests." }, { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a single contact by ID." }, { "info": { "name": "Update contact", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.truto.one/contacts/:id", "params": [ { "name": "integrated_account_id", "value": "", "type": "query", "description": "The ID of the integrated account (connected CRM provider instance) to query. Required for all Unified API requests." }, { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a contact record in the connected CRM provider." } ] } ], "bundled": true }