Supplier Invoices Payments
Create and retrieve payment records for supplier invoices.
Retrieves a paginated list of payments across all supplier invoices for the specified consent.
System support
Fortnox
β Supported
Bjorn Lunden
π Not supported / contact us
Spiris
π Not supported / contact us
Tripletex
π Not supported / contact us
Visma e-conomic
π Not supported / contact us
Billy
π Not supported / contact us
Visma Dinero
π Not supported / contact us
![]()
Procountor
π Not supported / contact us
Visma Netvisor
π Not supported / contact us
Microsoft Business Central
π Not supported / contact us
Exact Online
π Not supported / contact us
![]()
QuickBooks
π Not supported / contact us
Xero
β Supported
Bokio
π Not supported / contact us
Kleer
π Not supported / contact us
Use the API key to access all API endpoints.
Identifier of the consent representing the connection to the accounting system.
Unique identifier used to correlate and trace this request.
Returns a paginated list of supplier invoice payments for the specified consent.
Represents a paginated result containing metadata and a collection of items.
Missing or invalid authentication credentials.
Not authorized to access this resource.
This operation is not supported by the connected accounting system.
GET /accounting/api/v1/consents/{consentId}/supplierinvoices/payments HTTP/1.1
Host: apione.zwapgrid.com
x-api-key: YOUR_API_KEY
x-correlation-id: 123e4567-e89b-12d3-a456-426614174000
Accept: */*
{
"meta": {
"totalResources": 10,
"totalPages": 1,
"currentPage": 1
},
"data": [
{
"id": "59",
"paymentId": "59",
"reference": "PAY-59",
"receivedDate": "2022-06-01",
"paidDate": "2022-06-01",
"bookedIndicator": true,
"bookedDate": "2022-06-02",
"accountingAccount": {
"id": "5233",
"accountingAccountId": "5233",
"reference": "5233",
"standardAccountingAccountId": null,
"name": "Bank account",
"active": null,
"postable": null,
"description": {
"languageId": "ENG",
"text": "Main bank"
},
"descriptions": [
{
"languageId": "ENG",
"text": "Main bank"
}
],
"accountingAccountTypeCode": null,
"financialDimensions": []
},
"status": null,
"billingReferences": [
{
"invoiceDocumentReferences": [
{
"id": "INV-001",
"schemeId": "invoiceId"
}
]
}
],
"documentCurrencyCode": {
"currency": "DKK",
"currencyId": "DKK",
"currencyRate": 1
},
"amount": 500,
"creditAmount": {
"amount": 500,
"currencyId": "DKK"
},
"debitAmount": {
"amount": 0,
"currencyId": "DKK"
}
}
]
}Retrieves a paginated list of payments for a specific supplier invoice.
System support
Fortnox
β Supported
Bjorn Lunden
π Not supported / contact us
Spiris
π Not supported / contact us
Tripletex
π Not supported / contact us
Visma e-conomic
π Not supported / contact us
Billy
π Not supported / contact us
Visma Dinero
π Not supported / contact us
![]()
Procountor
π Not supported / contact us
Visma Netvisor
π Not supported / contact us
Microsoft Business Central
π Not supported / contact us
Exact Online
π Not supported / contact us
![]()
QuickBooks
π Not supported / contact us
Xero
β Supported
Bokio
π Not supported / contact us
Kleer
π Not supported / contact us
Use the API key to access all API endpoints.
Identifier of the consent representing the connection to the accounting system.
Identifier of the supplier invoice.
Unique identifier used to correlate and trace this request.
Returns a paginated list of supplier invoice payments for the specified consent.
Represents a paginated result containing metadata and a collection of items.
Missing or invalid authentication credentials.
Not authorized to access this resource.
This operation is not supported by the connected accounting system.
GET /accounting/api/v1/consents/{consentId}/supplierinvoices/{supplierInvoiceId}/payments HTTP/1.1
Host: apione.zwapgrid.com
x-api-key: YOUR_API_KEY
x-correlation-id: 123e4567-e89b-12d3-a456-426614174000
Accept: */*
{
"meta": {
"totalResources": 10,
"totalPages": 1,
"currentPage": 1
},
"data": [
{
"id": "59",
"paymentId": "59",
"reference": "PAY-59",
"receivedDate": "2022-06-01",
"paidDate": "2022-06-01",
"bookedIndicator": true,
"bookedDate": "2022-06-02",
"accountingAccount": {
"id": "5233",
"accountingAccountId": "5233",
"reference": "5233",
"standardAccountingAccountId": null,
"name": "Bank account",
"active": null,
"postable": null,
"description": {
"languageId": "ENG",
"text": "Main bank"
},
"descriptions": [
{
"languageId": "ENG",
"text": "Main bank"
}
],
"accountingAccountTypeCode": null,
"financialDimensions": []
},
"status": null,
"billingReferences": [
{
"invoiceDocumentReferences": [
{
"id": "INV-001",
"schemeId": "invoiceId"
}
]
}
],
"documentCurrencyCode": {
"currency": "DKK",
"currencyId": "DKK",
"currencyRate": 1
},
"amount": 500,
"creditAmount": {
"amount": 500,
"currencyId": "DKK"
},
"debitAmount": {
"amount": 0,
"currencyId": "DKK"
}
}
]
}Creates a new payment for the specified supplier invoice.
System support
Fortnox
β Supported
Bjorn Lunden
π Not supported / contact us
Spiris
β Supported
Tripletex
π Not supported / contact us
Visma e-conomic
π Not supported / contact us
Billy
π Not supported / contact us
Visma Dinero
π Not supported / contact us
![]()
Procountor
π Not supported / contact us
Visma Netvisor
π Not supported / contact us
Microsoft Business Central
π Not supported / contact us
Exact Online
π Not supported / contact us
![]()
QuickBooks
π Not supported / contact us
Xero
β Supported
Bokio
π Not supported / contact us
Kleer
π Not supported / contact us
Use the API key to access all API endpoints.
Identifier of the consent representing the connection to the accounting system.
Identifier of the supplier invoice.
Unique identifier used to correlate and trace this request.
Represents input data for creating a supplier invoice payment.
Unique identifier for the payment.
Reference identifier for the payment.
Date when the payment was received.
Date when the payment was made.
Indicates whether the payment is booked.
Date when the payment was booked.
Monetary amount for the payment.
The supplier invoice payment was created. Response includes a Location header with the URL of the created resource.
The request body or parameters are invalid.
Missing or invalid authentication credentials.
Not authorized to access this resource.
This operation is not supported by the connected accounting system.
POST /accounting/api/v1/consents/{consentId}/supplierinvoices/{supplierInvoiceId}/payments HTTP/1.1
Host: apione.zwapgrid.com
x-api-key: YOUR_API_KEY
x-correlation-id: 123e4567-e89b-12d3-a456-426614174000
Content-Type: application/json
Accept: */*
Content-Length: 771
{
"id": null,
"reference": null,
"receivedDate": null,
"paidDate": null,
"bookedIndicator": null,
"bookedDate": null,
"accountingAccount": {
"id": null,
"reference": null,
"standardAccountingAccountId": null,
"name": null,
"active": null,
"postable": null,
"descriptions": [
{
"text": null,
"languageId": null
}
],
"accountingAccountTypeCode": {
"code": null,
"listId": null
},
"financialDimensions": [
{
"id": null,
"reference": null,
"type": null,
"name": null,
"description": null,
"isActive": null
}
]
},
"documentCurrencyCode": {
"currencyId": null,
"currencyRate": null
},
"amount": null,
"creditAmount": {
"amount": 1,
"currencyId": null
},
"debitAmount": {
"amount": 1,
"currencyId": null
},
"status": {
"conditionCode": null,
"referenceDate": null,
"statusReason": null
},
"billingReferences": [
{
"invoiceDocumentReferences": [
{
"id": null,
"schemeId": null
}
]
}
]
}{
"meta": {
"totalResources": 10,
"totalPages": 1,
"currentPage": 1
},
"data": [
{
"id": "59",
"paymentId": "59",
"reference": "PAY-59",
"receivedDate": "2022-06-01",
"paidDate": "2022-06-01",
"bookedIndicator": true,
"bookedDate": "2022-06-02",
"accountingAccount": {
"id": "5233",
"accountingAccountId": "5233",
"reference": "5233",
"standardAccountingAccountId": null,
"name": "Bank account",
"active": null,
"postable": null,
"description": {
"languageId": "ENG",
"text": "Main bank"
},
"descriptions": [
{
"languageId": "ENG",
"text": "Main bank"
}
],
"accountingAccountTypeCode": null,
"financialDimensions": []
},
"status": null,
"billingReferences": [
{
"invoiceDocumentReferences": [
{
"id": "INV-001",
"schemeId": "invoiceId"
}
]
}
],
"documentCurrencyCode": {
"currency": "DKK",
"currencyId": "DKK",
"currencyRate": 1
},
"amount": 500,
"creditAmount": {
"amount": 500,
"currencyId": "DKK"
},
"debitAmount": {
"amount": 0,
"currencyId": "DKK"
}
}
]
}Last updated
Was this helpful?
