Retrieves a product with a specified ID.
Security
CustomerJWT
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/storefront/products/{id}
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/storefront/products/{id}
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/storefront/products/{id}
curl -i -X GET \
'https://www.rebilly.com/_mock/catalog/all/storefront/products/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Product retrieved.
Unit label, such as per seat or per unit.
Default:"unit"
Example:"seat"
Specifies if the product requires shipping. If this value is true, shipping calculations are applied.
Example:false
Product options such as color, size, and so forth. Product option values are defined in plans. For more information, see Plans.
Use custom fields to extend a resource scheme to include custom data that is not provided as a common field. For more information, see Custom fields.
Default:{}
Example:
{ "foo": "bar" }
Date and time when the resource is created. This value is set automatically when the resource is created.
Date and time when the resource is updated. This value is set automatically when the resource is updated.
Response
{ "id": "prod_0YV7DES3WPC5J8JD8QTVNZBZNZ", "name": "Premium membership", "unitLabel": "seat", "description": "string", "requiresShipping": false, "options": [ "string" ], "customFields": { "foo": "bar" }, "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "_links": [ { … } ] }