Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Partial attributes as specified, e.g. fields[products]=title,publish_status
Show details of a product
Use the fields[products] parameter to request only specific attributes:
GET /v1/products/123?fields[products]=title,publish_statusResponse will only include the requested fields
{
"data": {
"id": "123",
"type": "products",
"attributes": {
"title": "Advanced Course",
"publish_status": "published"
},
"relationships": {}
}
}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Partial attributes as specified, e.g. fields[products]=title,publish_status