{ "opencollection": "1.0.0", "info": { "name": "Ando Public Calls Messages API", "version": "v1" }, "items": [ { "info": { "name": "Messages", "type": "folder" }, "items": [ { "info": { "name": "Get a message", "type": "http" }, "http": { "method": "GET", "url": "https://api.ando.so/v1/conversation-messages/:messageId", "params": [ { "name": "messageId", "value": "", "type": "path", "description": "Message identifier." } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Returns a single conversation message by identifier." }, { "info": { "name": "List thread replies", "type": "http" }, "http": { "method": "GET", "url": "https://api.ando.so/v1/conversation-messages/:messageId/replies", "params": [ { "name": "messageId", "value": "", "type": "path", "description": "Thread root message identifier." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of records to return." }, { "name": "after", "value": "", "type": "query", "description": "Cursor or ISO timestamp after which results should be returned." } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Returns replies for a thread root message." }, { "info": { "name": "List conversation messages", "type": "http" }, "http": { "method": "GET", "url": "https://api.ando.so/v1/conversations/:conversationId/messages", "params": [ { "name": "conversationId", "value": "", "type": "path", "description": "Conversation identifier." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of records to return." }, { "name": "before", "value": "", "type": "query", "description": "Cursor or ISO timestamp before which results should be returned." } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Returns messages in a conversation." }, { "info": { "name": "Create a conversation message", "type": "http" }, "http": { "method": "POST", "url": "https://api.ando.so/v1/conversations/:conversationId/messages", "headers": [ { "name": "Idempotency-Key", "value": "" } ], "params": [ { "name": "conversationId", "value": "", "type": "path", "description": "Conversation identifier." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Creates a message in a conversation using the authenticated API-key workspace membership as the author." } ] } ], "bundled": true }