curl --request GET \
--url https://api.pushcash.com/refund/{id} \
--header 'Authorization: Bearer <token>'{
"id": "refund_28CJjV7P4Go5PNJvfzghiD",
"intent_id": "intent_sandbox_dMggQ93ZYH6DH9LBhVeijE",
"amount": 1450,
"currency": "USD",
"status": "approved",
"created_at": "2023-05-24T20:36:50.694Z"
}Retrieves a specific refund by ID
curl --request GET \
--url https://api.pushcash.com/refund/{id} \
--header 'Authorization: Bearer <token>'{
"id": "refund_28CJjV7P4Go5PNJvfzghiD",
"intent_id": "intent_sandbox_dMggQ93ZYH6DH9LBhVeijE",
"amount": 1450,
"currency": "USD",
"status": "approved",
"created_at": "2023-05-24T20:36:50.694Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.pushcash.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the refund to retrieve.
"refund_28CJjV7P4Go5PNJvfzghiD"
Successful operation
A refund issued against an approved intent
The unique identifier assigned by Push
The intent which corresponds to the refund
Amount of the refund in the smallest unit of specified currency (ie if currency is USD, the unit would be cents)
Currency associated with the amount
USD The status of the refund
approved, declined When the refund was created (ISO 8601 date string)