Get an integration event by its ID
get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
integrationNamestring · max: 100RequiredPattern:
Name of the integration.
^[a-zA-Z0-9-_.]+$eventIdstringRequired
ID of the integration event
Responses
200
Integration event
application/json
404
Not Found
application/json
get/integrations/{integrationName}/events/{eventId}
GET /v1/integrations/{integrationName}/events/{eventId} HTTP/1.1
Host: api.gitbook.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"event": {
"id": "text",
"integrationId": "text",
"installationId": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"payload": {
"eventId": "text",
"type": "installation_setup",
"installationId": "text",
"status": "active",
"previous": {
"status": "active",
"configuration": {}
}
},
"status": "success"
},
"trace": {
"logs": [
{
"message": "text",
"timestamp": "2026-01-01T00:00:00.000Z",
"level": "debug"
}
]
}
}Last updated
Was this helpful?