GET
/
v1
/
admin
/
integrations
/
{id}
/
logs
curl --request GET \
  --url https://api.botpress.cloud/v1/admin/integrations/{id}/logs
{
  "logs": [
    {
      "timestamp": "<string>",
      "level": "<string>",
      "message": "<string>",
      "workflowId": "<string>",
      "userId": "<string>",
      "conversationId": "<string>"
    }
  ],
  "nextToken": "<string>"
}

Path Parameters

id
string
required

Integration Version ID

Query Parameters

timeStart
string
required

Beginning of the time range to get logs from

timeEnd
string
required

End of the time range to get logs from

level
string

Filter by log level

userId
string

Filter by user ID

conversationId
string

Filter by conversation ID

nextToken
string

Token to get the next page of logs

Response

200
application/json
Success
logs
object[]
required
nextToken
string