curl --request GET \
--url https://api.example.com/v2/integrations/logs/{id}/ \
--header 'Authorization: Bearer <token>'{
"id": 123,
"direction": "<string>",
"entity_type": "<string>",
"integration": 123,
"timestamp": "2023-11-07T05:31:56Z",
"success": true,
"response": null,
"details": null,
"entity_id": -1
}Retrieve an integration log by ID.
curl --request GET \
--url https://api.example.com/v2/integrations/logs/{id}/ \
--header 'Authorization: Bearer <token>'{
"id": 123,
"direction": "<string>",
"entity_type": "<string>",
"integration": 123,
"timestamp": "2023-11-07T05:31:56Z",
"success": true,
"response": null,
"details": null,
"entity_id": -1
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique integer value identifying this customer log.
Was this page helpful?