Synswi
  1. Invoice
Synswi
  • Invoice
    • Get invoice by id
      GET
    • Get invoices
      GET
    • Create an invoice
      POST
    • Pay an invoice
      POST
    • Send Invoice
      POST
    • Update an invoice
      POST
  • Payment instruments
    • Create a payment instrument
    • Get payment instruments
      GET
    • Get a payment instrument by id
      GET
  • Transactions
    • Get a transaction by id
      GET
    • Get transactions
      GET
    • Create a transaction
      POST
  1. Invoice

Get invoices

GET
https://api-sandbox.synswi.com/v1/invoices

Request

Query Params
accountId
string 
optional
Example:
acc-c068c34e-b12d-48b1-bc5f-c85edae9fc9b
offset
string 
optional
Example:
0
limit
string 
optional
Example:
2
tags.DocEntry
string 
optional
Example:
139302

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 GET 'https://api-sandbox.synswi.com/v1/invoices?tags.DocEntry=139302'

Responses

🟢200OK
application/json
Body
invoices
array [object] 
required
totalCount
integer 
required
Example
{
    "invoices": [
        {}
    ],
    "totalCount": 0
}
Previous
Get invoice by id
Next
Create an invoice
Built with