cURL
curl --request GET \ --url https://api.example.com/vendor/product-types/{id} \ --header 'Authorization: Bearer <token>'
{ "product_type": { "id": "<string>", "value": "<string>", "metadata": { "car": "white" } } }
Retrieves product type by id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the type
The comma-separated fields to include in the response
OK
A product type object with its properties
Show child attributes