Get started
Integrations
Use cases
API reference
- Accounting
- Overview
- Accounts
- Async Task
- Bills
- Booking Proposals
- Contacts
- Customers
- Dimensions
- Expenses
- Files
- Invoices
- Invoice Lines
- Items
- Journals
- Offers
- Offer Lines
- Payments
- Payment Terms
- Projects
- Sales Orders
- Sales Order Lines
- Suppliers
- Tracking categories
- Tax Rates
- Transactions
- Vendor Credits
- Authentication
- Tenant Management
- User
Get invoiceline
curl --request GET \
--url https://api.maesn.dev/accounting/invoices/{invoiceId}/lineItems/{lineItemId} \
--header 'X-ACCOUNT-KEY: <x-account-key>' \
--header 'X-API-KEY: <x-api-key>'
{
"meta": {
"warnings": [
"Field not used by target system"
],
"pagination": {
"total": 123,
"perPage": 123,
"currentPage": 123,
"totalPages": 123
}
},
"data": {
"lineItemId": "1",
"itemId": "item id",
"description": "Line item description",
"discountItemAmount": 10,
"discountItemPercentage": 10,
"grossAmount": 119,
"itemsAmount": 100,
"name": "Line item name",
"quantity": 1,
"taxCode": "tax code",
"taxRatePercentage": 19,
"unitAmount": 100,
"updatedDate": "2021-01-01T00:00:00Z",
"createdDate": "2021-01-01T00:00:00Z"
}
}
Test Api token:
663222ee
Test Account token:
85b30b51
Field support per integration
Please ensure the query parameters environmentName
and companyId
are accurately populated with the appropriate environment and company ID.
You can obtain these values by using the GET Environments
and GET Companies
endpoints available under the Authentication section.
Supported Response Fields:
Note that quantity can be a decimal numeral.
Please note that Lexware Office does not support the lineItemId
field and needs the itemId
as the unique identifier.
Supported Response Fields:
Note that quantity can be a decimal numeral.
Please ensure the query parameters environmentName
and companyId
are accurately populated with the appropriate environment and company ID.
You can obtain these values by using the GET Environments
and GET Companies
endpoints available under the Authentication section.
Please use the id field as the companyId and the environmentId field as the environmentName.
Supported Response Fields:
Note that quantity can be a decimal numeral.
ISO-8601 date format, e.g., 2024-01-01T00:00:00Z
ISO-8601 date format, e.g., 2024-01-01T00:00:00Z
Supported Response Fields:
Note that quantity can be a decimal numeral.
ISO-8601 date format, e.g., 2024-01-01T00:00:00Z
ISO-8601 date format, e.g., 2024-01-01T00:00:00Z
Supported Response Fields:
Note that quantity can be a decimal numeral.
ISO-8601 date format, e.g., 2024-01-01T00:00:00Z
Query Parameters
Environment Name
Company Id
Response
"1"
"item id"
"Line item description"
10
10
119
100
"Line item name"
1
"tax code"
19
100
"2021-01-01T00:00:00Z"
"2021-01-01T00:00:00Z"
Was this page helpful?
curl --request GET \
--url https://api.maesn.dev/accounting/invoices/{invoiceId}/lineItems/{lineItemId} \
--header 'X-ACCOUNT-KEY: <x-account-key>' \
--header 'X-API-KEY: <x-api-key>'
{
"meta": {
"warnings": [
"Field not used by target system"
],
"pagination": {
"total": 123,
"perPage": 123,
"currentPage": 123,
"totalPages": 123
}
},
"data": {
"lineItemId": "1",
"itemId": "item id",
"description": "Line item description",
"discountItemAmount": 10,
"discountItemPercentage": 10,
"grossAmount": 119,
"itemsAmount": 100,
"name": "Line item name",
"quantity": 1,
"taxCode": "tax code",
"taxRatePercentage": 19,
"unitAmount": 100,
"updatedDate": "2021-01-01T00:00:00Z",
"createdDate": "2021-01-01T00:00:00Z"
}
}