Retrieves a product with a specified ID.
Product retrieved.
name required | string <= 255 characters Name of the product. |
id | string <= 50 characters ID of the product. |
unitLabel | string <= 50 characters Default: "unit" Unit label, such as per |
description | string or null <= 512 characters Description of the product. |
requiresShipping | boolean Specifies if the product requires shipping.
If this value is |
options | Array of strings Product options such as color, size, and so forth. Product option values are defined in plans. For more information, see Plans. |
taxCategoryId | string Tax category of the product.
For a complete list of supported tax categories, see TaxJar sales tax API reference.
If none of the tax categories from the list are applicable for your product, use the general tax category |
accountingCode | string or null Accounting code of the product. |
object or null | |
customFields | object (ResourceCustomFields) Default: {} 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. |
createdTime | string <date-time> (CreatedTime) Date and time which is set automatically when the resource is created. |
updatedTime | string <date-time> (UpdatedTime) Date and time which updates automatically when the resource is updated. |
Array of objects (SelfLink) Related links. | |
Unauthorized access. Invalid credentials used.
Access forbidden.
Resource not found.
const product = await api.products.get({id: 'foobar-001'}); console.log(product.fields.name);
{- "id": "prod_0YV7DES3WPC5J8JD8QTVNZBZNZ",
- "name": "Premium membership",
- "unitLabel": "seat",
- "description": "string",
- "requiresShipping": false,
- "options": [
- "string"
], - "taxCategoryId": "00000",
- "accountingCode": "4010",
- "recognition": {
- "debitAccountId": "string",
- "creditAccountId": "string"
}, - "customFields": {
- "foo": "bar"
}, - "createdTime": "2019-08-24T14:15:22Z",
- "updatedTime": "2019-08-24T14:15:22Z",
- "_links": [
- {
- "href": "string",
- "rel": "self"
}
]
}