Retrieve the progress of a student in a product
GET
/usuario/progresso_por_produto/{usuario_email_id}/{produto_id}Retrieves how much of a product the student has completed, and the published lessons they watched.
Authorization
apiKey AuthorizationBearer <token>
The school API key, found in the dashboard settings, sent in the Authorization header. The Bearer prefix is optional.
In: header
Path Parameters
usuario_email_id*string
The student, by ID, email or document (CPF). A value that is a valid email is looked up by email; otherwise the digits are matched against the ID and the document.
produto_id*integer
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/usuario/progresso_por_produto/string/0"{ "code": 200, "success": true, "data": { "progresso": { "assistidas": 0, "aulas": [ { "acesso_em": "string", "aula": { "id": 0, "nome": "string", "ordem": 0, "tipo": "default" }, "count": null, "item_id": 0 } ], "completas": 0, "total": "string" } }}