Skip to content
Guides
CatalogSpecifications
catalog:read

Get specification by ID

Returns one product specification with its aliases, behavior, metadata, and ordered values.

GET/v1/catalog/specifications/{id}

Returns one product specification with its aliases, behavior, metadata, and ordered values.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Path Parameters

id*string

Unique identifier of the resource.

Header Parameters

x-Store-Id?string

Store the request acts on. Not needed when the token is bound to a store.

Authorization*string

OAuth 2.0 bearer token.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/catalog/specifications/7204558912004325301" \  -H "x-Store-Id: <store-id>" \  -H "Authorization: Bearer <token>"
{  "id": "7204558912004325301",  "storeId": "7204558912004325301",  "name": "Example resource",  "key": "example",  "aliases": [    "example"  ],  "isMultiple": false,  "isRequired": false,  "isFilterable": false,  "isSearchable": false,  "order": 1,  "status": "inactive",  "type": "input",  "level": "product",  "values": [    {      "id": "7204558912004325301",      "value": "example",      "name": "Example resource",      "isDefault": false,      "order": 1    }  ],  "metadata": {},  "createdOn": "2026-08-01T15:30:00Z"}