curl --request GET \
--url https://api.crevio.co/v1/refunds \
--header 'Authorization: <api-key>'{
"object": "list",
"data": [
{
"id": "<string>",
"object": "<string>",
"amount": 123,
"currency": "<string>",
"reason": "<string>",
"status": "<string>",
"created_at": "<string>",
"provider": "<string>",
"metadata": {},
"order": "<string>"
}
],
"has_more": true,
"url": "<string>"
}Returns a list of refunds for the current account
curl --request GET \
--url https://api.crevio.co/v1/refunds \
--header 'Authorization: <api-key>'{
"object": "list",
"data": [
{
"id": "<string>",
"object": "<string>",
"amount": 123,
"currency": "<string>",
"reason": "<string>",
"status": "<string>",
"created_at": "<string>",
"provider": "<string>",
"metadata": {},
"order": "<string>"
}
],
"has_more": true,
"url": "<string>"
}API key in the format: Bearer {api_token}
Filter by order ID
Cursor for pagination — the ID of the last item in the previous page
Items per page
1 <= x <= 100Was this page helpful?