Retrieve product progress

GET/users/{user_id}/products/{product_id}/progress

Retrieves the user's progress in a single product, in the same format used when listing the user's progress across products.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

user_id*string
product_id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/users/string/products/string/progress"
{  "data": {    "completed_at": "2019-08-24T14:15:22Z",    "completed_lessons": 0,    "last_activity_at": "2019-08-24T14:15:22Z",    "object": "product_progress",    "percent": 0,    "product_id": "string",    "started_at": "2019-08-24T14:15:22Z",    "total_lessons": 0,    "user_id": "string"  }}