Skip to main content
POST
/
v1
/
charges
/
{id}
/
refund
cURL
curl --request POST \
  --url https://api.nomod.com/v1/charges/{id}/refund \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "amount": "<string>"
}'
{
  "message": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Your API key. This is required by all endpoints to access our API programatically. You can view your API Key by navigating to the app settings

Path Parameters

id
string<uuid>
required

Body

application/json
amount
string<decimal>
required

amount to be refunded

Response

message
string

Succesfully refunded

I