AgentBots
Inbox API
Conversations API
Contact Labels
CSAT Survey Page
Account AgentBots
Agents
Canned Responses
Canned Response
Custom Attributes
Contacts
Automation Rule
Help Center
Conversations
Conversation Assignment
Conversation Labels
Inboxes
Integrations
Profile
Teams
Custom Filters
Inboxes
List Agents in Inbox
Inboxes
List Agents in Inbox
Get Details of Agents in an Inbox
GET
/
api
/
v1
/
accounts
/
{account_id}
/
inbox_members
/
{inbox_id}
curl --request GET \
--url https://app.chatwoot.com/api/v1/accounts/{account_id}/inbox_members/{inbox_id} \
--header 'api_access_token: <api-key>'
[
{
"id": 123,
"uid": "<string>",
"name": "<string>",
"available_name": "<string>",
"display_name": "<string>",
"email": "<string>",
"account_id": 123,
"role": "agent",
"confirmed": true,
"availability_status": "available",
"auto_offline": true,
"custom_attributes": {}
}
]
Authorizations
This token can be obtained by visiting the profile page or via rails console. Provides access to endpoints based on the user permissions levels. This token can be saved by an external system when user is created via API, to perform activities on behalf of the user.
Path Parameters
The numeric ID of the account
The ID of the Inbox
Response
200
application/json
Success
Array of all active agents
curl --request GET \
--url https://app.chatwoot.com/api/v1/accounts/{account_id}/inbox_members/{inbox_id} \
--header 'api_access_token: <api-key>'
[
{
"id": 123,
"uid": "<string>",
"name": "<string>",
"available_name": "<string>",
"display_name": "<string>",
"email": "<string>",
"account_id": 123,
"role": "agent",
"confirmed": true,
"availability_status": "available",
"auto_offline": true,
"custom_attributes": {}
}
]