curl --request GET \
--url https://api.example.com/api/v1/product_families \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>"
}
],
"pagination_meta": {
"page": 1,
"per_page": 1,
"total_items": 1,
"total_pages": 1
}
}curl --request GET \
--url https://api.example.com/api/v1/product_families \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>"
}
],
"pagination_meta": {
"page": 1,
"per_page": 1,
"total_items": 1,
"total_pages": 1
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number (0-indexed)
x >= 0Number of items per page
1 <= x <= 100