{
"has_more": true,
"items": [
{
"created_at": "2023-08-30T10:08:08.146343Z",
"currency": "EUR",
"description": "This is product 1",
"external_reference": "0e67fc3c-c632-4feb-ad34-e18ed5fbf66a",
"id": 1,
"label": "Product 1",
"ledger_account": {
"id": 18614872
},
"price": "officia ullamco aliqua",
"price_before_tax": "amet proident do",
"reference": "REF-123",
"unit": "piece",
"updated_at": "2023-08-30T10:08:08.146343Z",
"vat_rate": "FR_200"
},
{
"created_at": "2023-08-30T10:08:08.146343Z",
"currency": "EUR",
"description": "This is product 1",
"external_reference": "0e67fc3c-c632-4feb-ad34-e18ed5fbf66a",
"id": 1,
"label": "Product 1",
"ledger_account": {
"id": 57665704
},
"price": "v",
"price_before_tax": "et est aliqua",
"reference": "REF-123",
"unit": "piece",
"updated_at": "2023-08-30T10:08:08.146343Z",
"vat_rate": "FR_200"
}
],
"next_cursor": "dXBkYXRlZF9hdDoxNjc0MTIzNDU2"
}
List products
ℹ️ This endpoint requires one of the following scopes:
products:all
,products:readonly
{
"has_more": true,
"items": [
{
"created_at": "2023-08-30T10:08:08.146343Z",
"currency": "EUR",
"description": "This is product 1",
"external_reference": "0e67fc3c-c632-4feb-ad34-e18ed5fbf66a",
"id": 1,
"label": "Product 1",
"ledger_account": {
"id": 18614872
},
"price": "officia ullamco aliqua",
"price_before_tax": "amet proident do",
"reference": "REF-123",
"unit": "piece",
"updated_at": "2023-08-30T10:08:08.146343Z",
"vat_rate": "FR_200"
},
{
"created_at": "2023-08-30T10:08:08.146343Z",
"currency": "EUR",
"description": "This is product 1",
"external_reference": "0e67fc3c-c632-4feb-ad34-e18ed5fbf66a",
"id": 1,
"label": "Product 1",
"ledger_account": {
"id": 57665704
},
"price": "v",
"price_before_tax": "et est aliqua",
"reference": "REF-123",
"unit": "piece",
"updated_at": "2023-08-30T10:08:08.146343Z",
"vat_rate": "FR_200"
}
],
"next_cursor": "dXBkYXRlZF9hdDoxNjc0MTIzNDU2"
}
Cursor for pagination. Use this to fetch the next set of results. The cursor is an opaque string returned in the previous response's metadata. Leave empty for the first request.
"dXBkYXRlZF9hdDoxNjc0MTIzNDU2"
Number of items to return per request. Defaults to 20 if not specified. Must be between 1 and 100.
"20"
You can choose to filter items on specific fields.
Available fields : id
Available operators : lt
, lteq
, gt
, gteq
, eq
, not_eq
, in
, not_in
"[{\"field\": \"id\", \"operator\": \"eq\", \"value\": \"42\"}]"
You can choose to sort items on specific attributes
Sort field may be prefixed with -
for descending order.
Example : id
will sort by ascending order, -id
will sort by descending order.
Available fields : id
"-id"
A list of Products
The response is of type object
.