List custom attributes

GET https://api.tamio.com/v2/products/custom-attributes/list

Query Parameters

page integer*
per_page integer*
order string
ascdesc
filter string

Responses

200 Custom attributes retrieved successfully

Custom attributes retrieved successfully

status integer
total_results integer
custom_attributes array of CustomAttribute
400 Bad request. Possible `error_code` values:
401 Missing or invalid API key
/products/custom-attributes/list
1const response = await fetch("https://api.tamio.com/v2/products/custom-attributes/list", {
2 headers: {
3 "Authorization": "Bearer YOUR_API_KEY",
4 "Accept": "application/json"
5 }
6});
7const data = await response.json();
Responses
{
  "status": 200,
  "total_results": 0,
  "custom_attributes": []
}