Enterprise AI Β· API Reference
AI Activity
Tenant-wide and per-subject AI event streams.
GET
/api/v1/ai/activityList activity
List activity in the Enterprise AI Control Plane. The tenant is resolved server-side from the bearer token/session; callers do not pass a tenant subdomain in the API path.
π Bearer JWT required
Query parameters
| page | Zero-based page index where supported. |
| size | Page size where supported. |
Responses
200Successful response.
400Invalid request.
401Missing or invalid authentication.
403Forbidden by permission, SKU, or provider-admin policy.
404Resource not found or not in the caller's tenant.
Example request
cURL
curl -X GET "https://api.authspoke.com/api/v1/ai/activity" \
-H "Authorization: Bearer $TOKEN"Example response
JSON
{
"id": "uuid",
"status": "OK"
}GET
/api/v1/ai/activity/{subjectId}List activity
List activity in the Enterprise AI Control Plane. The tenant is resolved server-side from the bearer token/session; callers do not pass a tenant subdomain in the API path.
π Bearer JWT required
Path parameters
| subjectId* | subjectId identifier. |
Query parameters
| page | Zero-based page index where supported. |
| size | Page size where supported. |
Responses
200Successful response.
400Invalid request.
401Missing or invalid authentication.
403Forbidden by permission, SKU, or provider-admin policy.
404Resource not found or not in the caller's tenant.
Example request
cURL
curl -X GET "https://api.authspoke.com/api/v1/ai/activity/{subjectId}" \
-H "Authorization: Bearer $TOKEN"Example response
JSON
{
"id": "uuid",
"status": "OK"
}