Management
Get invoice by ID
API Documentation
Addresses
- Addresses
- Management
Users
- Users overview
- Registration
- Management
- Credentials
- Password
Roles
- Roles overview
- Role Management
- User Role Management
Personas
- Personas overview
- Personal Identity
- User-Persona
Customers
- Customers overview
- Management
- Team Management
- Settings
Countries
- Countries overview
- Management
- Lookup
Currencies
- Currencies overview
- Management
- Exchange Rates
FX
- FX overview
- Exchange Rates
Ledger
- Ledgers overview
- Management
- Operations
- Reports
Tariffs
- Tariffs overview
- Management
- Fee Ranges
- Calculations
Tasks
- Tasks overview
- Management
- Actions
- Assignees
Transactions
- Transactions overview
- Management
- Actions
- Recipients
Uploads
- Uploads overview
- Files
- Customer Documents
Invoices
- Invoices overview
- Management
- Processing
- Payers
- Customer
Accounts
- Accounts overview
- Management
- Customer
- Balance
Chat
- Chat overview
- Conversations
- Messages
Utilities
- Utilities overview
- Record Management
Profile
- Profile overview
- Management
- Avatar
- Security
KYB
- KYB overview
- Flow
- Answers
RBAC
- RBAC overview
- Permissions
- Management
- System
Management
Get invoice by ID
Retrieve complete invoice details including line items
GET
/
v1
/
invoices
/
{id}
{
"invoice": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"invoice_number": "<string>",
"description": "<string>",
"status": "draft",
"party_type": "receiver",
"due_date": "2023-11-07T05:31:56Z",
"currency": "<string>",
"iban": "<string>",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name_from": "<string>",
"address_from": "<string>",
"zip_from": "<string>",
"city_from": "<string>",
"country_from": "<string>",
"name_to": "<string>",
"address_to": "<string>",
"zip_to": "<string>",
"city_to": "<string>",
"country_to": "<string>",
"subtotal": 123,
"shipping": 123,
"discount": 123,
"vat": 123,
"total": 123,
"created_at": "2023-11-07T05:31:56Z",
"metadata": {}
},
"items": [
"<any>"
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Invoice UUID
Query Parameters
Include line items in response
Include metadata in response
Response
200
application/json
Invoice details
Available options:
draft
, pending
, paid
, sent
, overdue
Available options:
receiver
, sender
{
"invoice": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"invoice_number": "<string>",
"description": "<string>",
"status": "draft",
"party_type": "receiver",
"due_date": "2023-11-07T05:31:56Z",
"currency": "<string>",
"iban": "<string>",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name_from": "<string>",
"address_from": "<string>",
"zip_from": "<string>",
"city_from": "<string>",
"country_from": "<string>",
"name_to": "<string>",
"address_to": "<string>",
"zip_to": "<string>",
"city_to": "<string>",
"country_to": "<string>",
"subtotal": 123,
"shipping": 123,
"discount": 123,
"vat": 123,
"total": 123,
"created_at": "2023-11-07T05:31:56Z",
"metadata": {}
},
"items": [
"<any>"
]
}