Quick Start
Get your API keys
Review the API Documentation
APIsMake your first request
Create outgoing invoice
Request Body
Last updated
Was this helpful?
Was this helpful?
{
"status": "success",
"data": {
"message": "invoice 12335675 sent",
"order_id": ""
}
}curl --location --globoff 'https://api.qvalia.com/transaction/{accountRegNo}/invoices/outgoing' \
--data '{
"Invoice": {}
}'const body = {
Invoice: {...}
};
var requestOptions = {
method: 'POST',
body
};
await fetch('https://api.qvalia.com/transaction/{accountRegNo}/invoices/outgoing', requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));import requests
url = "https://api.qvalia.com/transaction/{accountRegNo}/invoices/outgoing"
body = "{
\"Invoice\": {}
}"
headers = {}
response = requests.request("POST", url, headers=headers, data=body)
print(response.text)