Skip to content

Get Toolzz Chat Integration

Endpoint used to get a Toolzz Chat integration.

Terminal window
curl --request GET \
--url https://chat.api.toolzz.com.br/api/v1/chat/integration/{integrationId} \
--header 'Authorization: Bearer TOKEN_HERE'
{
"id": "uuid",
"title": "<string>",
"isActive": true,
"unitId": "uuid",
"credentialId": "uuid",
"accountId": 0,
"inboxId": 0,
"teamId": 0,
"handoffAction": "<string>",
"escalationNotice": "<string>",
"keepHistory": false,
"sendInitialMessage": true,
"infisicalReference": {
"environment": "prod",
"path": "/",
"projectId": "uuid",
"secretName": "uuid"
}
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes
ParameterTypeDescriptionRequired
integrationIdStringToolzz Chat integration IDYes
KeyTypeDescription
idUUIDUnique identifier of the handoff configuration in the database.
titleStringIdentifier title of the transfer rule (e.g., “test”).
isActiveBooleanDefines if the transition rule to human is active.
unitIdUUIDUnique identifier of the owning organizational unit.
credentialIdUUIDToolzz Chat credential ID linked after secret resolution.
accountIdNumberID of the organizational account in the service provider.
inboxIdNumberID of the target inbox (Inbox).
teamIdNumberID of the team/department where the ticket will be moved.
handoffActionStringLogical instruction or phrase that triggers the transfer by the AI.
escalationNoticeStringMessage sent to the client at the moment of redirection.
keepHistoryBooleanIf false, the history with the AI will not be visible to the human.
sendInitialMessageBooleanDefines if the system sends an automatic post-transfer message.
infisicalReferenceObjectTraceability metadata of the secret in the external vault:
infisicalReference.secretNameStringThe name or ID of the secret within Infisical.
infisicalReference.projectIdUUIDProject ID in Infisical where the key is stored.
infisicalReference.environmentStringVault environment (e.g., prod, dev, staging).
infisicalReference.pathStringDirectory path within the secrets vault.

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