Audit Logs
Get Audit Log Details
Retrieve a single audit log entry by ID. Requires an Enterprise subscription and organization admin or owner role.
get/api/v1/audit-logs/{id}
Path parameters
idstring required
Example:audit_2c3d4e5f6g
The unique audit log entry identifier.
Response
The audit log entry.
Example response
{
"data": {
"id": "audit_2c3d4e5f6g",
"workspaceId": "a91c4b2e-6d3f-4e8a-b5c7-0d9e2f1a8c64",
"actorId": "user_abc123",
"actorName": "Jane Smith",
"actorEmail": "jane@example.com",
"action": "workflow.deployed",
"resourceType": "workflow",
"resourceId": "3b1f7c92-8d4e-4a6b-9c0d-5e2f8a714b36",
"resourceName": "Customer Support Agent",
"description": "Deployed workflow Customer Support Agent",
"createdAt": "2025-06-20T14:15:22Z"
},
"limits": {
"workflowExecutionRateLimit": {
"sync": {
"requestsPerMinute": 60,
"maxBurst": 10,
"remaining": 59,
"resetAt": "2025-06-20T14:16:00Z"
},
"async": {
"requestsPerMinute": 60,
"maxBurst": 10,
"remaining": 59,
"resetAt": "2025-06-20T14:16:00Z"
}
},
"usage": {
"currentPeriodCost": 1.25,
"limit": 50,
"plan": "pro"
}
}
}