List the lessons of a product
GET
/item/lista_por_produto/{produto_id}Lists the published lessons of a product, with their sections, in content order. Not paginated.
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
produto_id*integer
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/item/lista_por_produto/0"{ "code": 200, "success": true, "data": { "itens": [ { "id": 0, "nome": "string", "ordem": 0, "secao": { "id": 0, "nome": "string", "ordem": 0, "tipo": "modulo" }, "tipo": "default" } ] }}