curl --request GET \
--url https://api.crevio.co/v1/orders/{order_id}/order_items \
--header 'Authorization: <api-key>'{
"object": "list",
"data": [
{
"id": "<string>",
"object": "<string>",
"quantity": 123,
"price_variant": "<string>",
"product": "<string>",
"order": "<string>"
}
],
"has_more": true,
"url": "<string>"
}Returns order items for a specific order
curl --request GET \
--url https://api.crevio.co/v1/orders/{order_id}/order_items \
--header 'Authorization: <api-key>'{
"object": "list",
"data": [
{
"id": "<string>",
"object": "<string>",
"quantity": 123,
"price_variant": "<string>",
"product": "<string>",
"order": "<string>"
}
],
"has_more": true,
"url": "<string>"
}API key in the format: Bearer {api_token}
The order ID
Cursor for pagination — the ID of the last item in the previous page
Items per page
1 <= x <= 100Was this page helpful?