Skip to content

List Inboxes

Endpoint used to list inboxes of Toolzz Chat.

Terminal window
curl --request POST \
--url https://converflow.api.prod.toolzz.media/api/v1/chat/inboxes \
--header 'Authorization: Bearer TOKEN_HERE' \
--header 'Content-Type: application/json' \
--data '{
"infisicalReference": {
"secretName": "<secretId>"
},
"unitId": "uuid"
}'
{
"data": [
{
"id": 123,
"name": "<string>"
}
]
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes
KeyTypeDescriptionRequired
infisicalReferenceObjectObject containing the pointing data for the secrets vault.Yes
infisicalReference.secretNameStringSecret ID stored in Infisical.Yes
unitIdUUIDUnique unit identifier.Yes

Note: The secretName is the secretId that can be found in the response of the endpoint Get Credentials by Integration.

KeyTypeDescription
data[]ArrayList of objects containing the inboxes linked to the unit.
idNumberUnique numeric identifier of the inbox.
nameStringInbox name.

To access this endpoint, it is necessary to send a valid access token through the authorization header (Authorization) of the request. Additionally, the API is protected by other security measures to safeguard user data.

To access your access token, follow these steps:

  1. Log in to the ToolzzAI platform
  2. Click on “Settings”
  3. Click on “Access Token”
  4. Copy the access token

Access token page