GET
/
products
/
{id}
curl --request GET \
  --url https://schoolmaker.co/api/v1/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "is_published": true,
  "position": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "progression": {
    "total_steps": 123,
    "completed_steps": 123,
    "progression_rate": 123,
    "time_spent": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

member_id
string
member_email
string

Response

200 - application/json
Product details
id
string
name
string
description
string
is_published
boolean
position
integer
created_at
string
updated_at
string
progression
object

The progression-related elements will only be displayed if you specify a member_id or member_email