- Invoice
- Payment instruments
- Transactions
Update an invoice
POST
https://api-sandbox.synswi.com/v1/ivoices/update
Request
Body Params application/json
invoiceId
string
required
recipient
object
required
name
string
required
email
string
required
items
array[string]
required
allowedPaymentMethods
array[string]
required
cardPaymentOptions
object
required
taxRate
integer
required
taxAmount
integer
required
status
string
required
Example
{
"invoiceId": "string",
"recipient": {
"name": "string",
"email": "string"
},
"items": [
"string"
],
"allowedPaymentMethods": [
"string"
],
"cardPaymentOptions": {},
"taxRate": 0,
"taxAmount": 0,
"status": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-sandbox.synswi.com/v1/ivoices/update' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
object {0}
Example
{}