# Inboxes /accounts/{account_id}/inboxes: $ref: ./inboxes/index.yml /accounts/{account_id}/inboxes/: $ref: ./inboxes/create.yml /accounts/{account_id}/inboxes/{id}: $ref: ./inboxes/update.yml /accounts/{account_id}/inboxes/{id}/set_agent_bot: $ref: ./inboxes/set_agent_bot.yml /agent_bots: $ref: ./agent_bots/index.yml # Conversations /accounts/{account_id}/conversations: parameters: - $ref: '#/parameters/account_id' $ref: ./conversation/index_or_create.yml /accounts/{account_id}/conversations/{converstion_id}: parameters: - $ref: '#/parameters/account_id' - $ref: '#/parameters/conversation_id' get: $ref: ./conversation/show.yml /accounts/{account_id}/conversations/{conversation_id}/toggle_status: parameters: - $ref: '#/parameters/account_id' - $ref: '#/parameters/conversation_id' post: $ref: ./conversation/toggle_status.yml # Messages /accounts/{account_id}/conversations/{id}/messages: $ref: ./conversation/messages/create_attachment.yml /accounts/{account_id}/conversations/{converstion_id}/messages: parameters: - $ref: '#/parameters/account_id' - $ref: '#/parameters/conversation_id' get: $ref: ./conversation/messages/index.yml post: $ref: ./conversation/messages/create.yml /accounts/{account_id}/conversations/{conversation_id}/messages/{message_id}: parameters: - $ref: '#/parameters/account_id' - $ref: '#/parameters/conversation_id' - $ref: '#/parameters/message_id' delete: $ref: ./conversation/messages/delete.yml /accounts/{account_id}/conversations/{conversation_id}/labels: parameters: - $ref: '#/parameters/account_id' - $ref: '#/parameters/conversation_id' get: $ref: ./conversation/labels/index.yml post: $ref: ./conversation/labels/create.yml /accounts/{account_id}/conversations/{conversation_id}/assignments: parameters: - $ref: '#/parameters/account_id' - $ref: '#/parameters/conversation_id' post: $ref: ./conversation/assignments.yml # Contacts /accounts/{account_id}/contacts: $ref: ./contact/list_create.yml /accounts/{account_id}/contacts/{id}: $ref: ./contact/crud.yml /accounts/{account_id}/contacts/{id}/conversations: $ref: ./contact/conversations.yml /accounts/{account_id}/contacts/search: $ref: ./contact/search.yml /accounts/{account_id}/contacts/{id}/contact_inboxes: $ref: ./contact_inboxes/create.yml /accounts/{account_id}/contacts/{id}/contactable_inboxes: $ref: ./contactable_inboxes/get.yml # Profile /profile: $ref: ./profile/index.yml # Teams /accounts/{account_id}/teams: parameters: - $ref: '#/parameters/account_id' get: $ref: ./teams/index.yml post: $ref: ./teams/create.yml /accounts/{account_id}/teams/{id}: parameters: - $ref: '#/parameters/account_id' - $ref: '#/parameters/team_id' get: $ref: './teams/show.yml' patch: $ref: ./teams/update.yml delete: $ref: ./teams/delete.yml # Integrations /accounts/{account_id}/integrations/apps: parameters: - $ref: '#/parameters/account_id' get: $ref: './integrations/apps/show.yml' /accounts/{account_id}/integrations/hooks: post: $ref: './integrations/hooks/create.yml' patch: $ref: ./integrations/hooks/update.yml delete: $ref: ./integrations/hooks/delete.yml