Getting Started
Capabilities
Refund
Payout Report
Charge
Banking
Refund
Retrieve a refund
Returns refund details and Id of refunded order.
POST
/
api
/
service
/
refund
/
retrieve
Copy
Ask AI
curl --request POST \
--url https://api.sand.getivy.de/api/service/refund/retrieve \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"id": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"amount": 1,
"currency": "EUR",
"status": "initiated",
"orderId": "<string>"
}
Authorizations
API key for authentication
Body
application/json
Response
200 - application/json
Returns the refund details.
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.sand.getivy.de/api/service/refund/retrieve \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"id": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"amount": 1,
"currency": "EUR",
"status": "initiated",
"orderId": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.