Update Invoice 🔄
Overview
This endpoint allows you to update an existing invoice in your Billify account using a PUT request.
Endpoint
Send a PUT request to the following endpoint:
PUT https://api.billify.co.uk/invoice
In the request body:
{
"apiKey": "YOUR_API_KEY",
"secretKey": "YOUR_SECRET_KEY",
"invoiceId": "invoiceId",
"updatedFields": {
// Include the fields you want to update here
}
}
Example
{
"apiKey": "your_api_key_here",
"secretKey": "your_secret_key_here",
"invoiceId": invoiceId,
"updatedFields": {
"customer_city": "London"
}
}