Product details
Products
Product details
Show details of a product
Sparse Fields
Use the fields[products] parameter to request only specific attributes:
Get only title and publish_status fields
GET /v1/products/123?fields[products]=title,publish_status
Response will only include the requested fields
{
"data": {
"id": "123",
"type": "products",
"attributes": {
"title": "Advanced Course",
"publish_status": "published"
},
"relationships": {}
}
}
GET
Product details
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