GET /activities/:activityId/progress
GET /activities/:activityId/progress
GET /api/activities/[activityId]/progress Verify user is authenticated with Clerk Get user's profile to get Supabase id Fetch activity progress No progress found - this is okay for a new activity
Endpoint
GET /activities/:activityId/progress
Authentication
This endpoint requires authentication. Include your authentication token in the request headers.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
activityId | string | Path parameter |
Error Responses
| Status Code | Error Code | Description |
|---|---|---|
| 401 | HTTP_401 | Unauthorized |
| 404 | HTTP_404 | Not Found |
| 404 | HTTP_404 | Not Found |
| 500 | HTTP_500 | Internal Server Error |
| 500 | HTTP_500 | Internal Server Error |
Example Request
curl -X GET "https://api.allurelms.com/activities/activityId-value/progress" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"