cURL
curl --request GET \ --url https://api.example.com/vendor/stores/{id} \ --header 'Authorization: Bearer <token>'
{ "store": { "id": "<string>", "name": "<string>", "default_sales_channel_id": "<string>", "default_region_id": "<string>", "default_location_id": "<string>", "supported_currencies": [ { "id": "<string>", "is_default": true, "currency_code": "<string>" } ] } }
Retrieves a Store by id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the store
The comma-separated fields to include in the response
OK
Store object.
Show child attributes