curl --request GET \
--url https://api.dots.dev/api/v2/refunds/{refund_id} \
--header 'Authorization: Basic <encoded-value>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
Retreieve a refund by its ID
curl --request GET \
--url https://api.dots.dev/api/v2/refunds/{refund_id} \
--header 'Authorization: Basic <encoded-value>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
ID of the refund to retrieve
OK
The response is of type object
.
Was this page helpful?