Invoice Cancellation
In order to cancel an invoice, you need to send a POST request.
Invoice cancellation
POST https://api.cryptocloud.plus/v2/invoice/merchant/canceled
To cancel an invoice, send a request specifying a unique identifier. The request will be successful only if the invoice has a status of created.
Request Body
Name
Type
Description
uuid*
string
Unique invoice identifier (INV-XXXXXXXX or XXXXXXXX)
{
"status": "success",
"result": [
"ok"
]
}{
"status": "error",
"result": {
"validate_error": "Invoice is not created"
}
}{
"status": "error",
"result": {
"validate_error": "uuid is required"
}
}Request examples
These examples show how you can submit a request to cancel an invoice. Note that you need to provide your API key in the Authorization header to successfully authorize the request.
curl -X POST https://api.cryptocloud.plus/v2/invoice/merchant/canceled \
-H "Authorization: Token <API KEY>" \
-H "Content-Type: application/json" \
-d '{"uuid":"INV-XXXXXXXX"}'import requests
url = "https://api.cryptocloud.plus/v2/invoice/merchant/canceled"
headers = {
"Authorization": "Token <API KEY>"
}
data = {
"uuid": "INV-XXXXXXXX"
response = requests.post(url, headers=headers, json=data)
if response.status_code == 200:
print("Success:", response.json())
else:
print("Fail:", response.status_code, response.text)fetch('https://api.cryptocloud.plus/v2/invoice/merchant/canceled', {
method: 'POST',
headers: {
'Authorization': 'Token <API KEY>',
'Content-Type': 'application/json'
},
body: JSON.stringify({ uuid: 'INV-XXXXXXXX' })
})
.then(response => {
if (response.ok) {
return response.json();
} else {
throw new Error('Fail: ' + response.status + ' ' + response.statusText);
}
})
.then(data => console.log('Success:', data))
.catch(error => console.error('Error:', error));Last updated
Was this helpful?