Get a list of all products
curl --request GET \
--url https://cloud.volttime.com/api/v3/products \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": 1,
"name": "Qui commodi incidunt iure odit.",
"sku": "quidem",
"active": false,
"digital": true,
"price": 12
},
{
"id": 2,
"name": "Autem et consequatur aut dolores enim non facere tempora.",
"sku": "nostrum",
"active": true,
"digital": false,
"price": 74
}
]
}
See the documentation for more information.
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://cloud.volttime.com/api/v3/products \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": 1,
"name": "Qui commodi incidunt iure odit.",
"sku": "quidem",
"active": false,
"digital": true,
"price": 12
},
{
"id": 2,
"name": "Autem et consequatur aut dolores enim non facere tempora.",
"sku": "nostrum",
"active": true,
"digital": false,
"price": 74
}
]
}