Skip to main content
POST
/
invoice
/
update-transaction
Update invoice transaction
curl --request POST \
  --url https://demo.onlinebillingform.com/api/v2/invoice/update-transaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "invoice_id": 123,
  "transaction_id": 123,
  "amount": 123,
  "status": 123,
  "gateway_id": 123,
  "message": "<string>",
  "json_response": "<string>",
  "transaction_key": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://www.billingserv.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <live_api_key>.

Body

invoice_id
integer
required
transaction_id
integer
required
amount
number
required
status
integer
required
gateway_id
integer
message
string
json_response
string
transaction_key
string

Response

OK

success
boolean