curl --request GET \
--url https://api.shingleai.com/v1/tasks/{id}/activity \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440010",
"createdAt": "2024-01-15T14:30:00Z",
"updatedAt": "2024-01-15T14:30:00Z",
"deletedAt": null,
"organizationId": "123e4567-e89b-12d3-a456-426614174000",
"taskId": "550e8400-e29b-41d4-a716-446655440000",
"userId": "123e4567-e89b-12d3-a456-426614174000",
"action": "updated",
"fieldName": "status",
"metadata": null,
"oldValue": "<unknown>",
"newValue": "<unknown>"
}
],
"meta": {
"pagination": {
"limit": 123,
"offset": 123,
"hasMore": true,
"total": 123
}
}
}Get the activity history for a specific task showing all changes, assignments, and status updates
curl --request GET \
--url https://api.shingleai.com/v1/tasks/{id}/activity \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440010",
"createdAt": "2024-01-15T14:30:00Z",
"updatedAt": "2024-01-15T14:30:00Z",
"deletedAt": null,
"organizationId": "123e4567-e89b-12d3-a456-426614174000",
"taskId": "550e8400-e29b-41d4-a716-446655440000",
"userId": "123e4567-e89b-12d3-a456-426614174000",
"action": "updated",
"fieldName": "status",
"metadata": null,
"oldValue": "<unknown>",
"newValue": "<unknown>"
}
],
"meta": {
"pagination": {
"limit": 123,
"offset": 123,
"hasMore": true,
"total": 123
}
}
}API key authentication via Bearer token
Task UUID
"123e4567-e89b-12d3-a456-426614174000"
Maximum number of items to return (1-100)
1 <= x <= 10010
Number of items to skip
x >= 00
Sort order by creation date
asc, desc "desc"