For the complete documentation index, see llms.txt. This page is also available as Markdown.

Suppliers

Retrieve supplier records for a given consent.

List suppliers

get

Retrieves a paginated list of suppliers for the specified consent.

System support

System
Status

Fortnox

Fortnox

βœ… Supported

Bjorn Lunden

Bjorn Lunden

πŸ“ž Not supported / contact us

Spiris

Spiris

πŸ“ž Not supported / contact us

Tripletex

Tripletex

πŸ“ž Not supported / contact us

Visma e-conomic

Visma e-conomic

πŸ“ž Not supported / contact us

Billy

Billy

βœ… Supported

Visma Dinero

Visma Dinero

βœ… Supported

Procountor

Procountor

βœ… Supported

Visma Netvisor

Visma Netvisor

πŸ“ž Not supported / contact us

Microsoft Business Central

Microsoft Business Central

βœ… Supported

Exact Online

Exact Online

βœ… Supported

QuickBooks

QuickBooks

βœ… Supported

Xero

Xero

βœ… Supported

Bokio

Bokio

πŸ“ž Not supported / contact us

Kleer

Kleer

πŸ“ž Not supported / contact us

Authorizations
x-api-keystringRequired

Use the API key to access all API endpoints.

Path parameters
consentIdstring Β· uuidRequired

Identifier of the consent representing the connection to the accounting system.

Query parameters
Countinteger Β· int32 Β· min: 1 Β· max: 100Optional

Number of records to return per page. Range: 1-100.

CurrentPageinteger Β· int32 Β· min: 1 Β· max: 2147483647Optional

Page number to return. Must be 1 or greater.

Header parameters
x-correlation-idstring Β· uuidRequired

Unique identifier used to correlate and trace this request.

Responses
200

Returns a paginated list of suppliers for the specified consent.

application/json

Represents a paginated result containing metadata and a collection of items.

get/api/v1/consents/{consentId}/suppliers
GET /accounting/api/v1/consents/{consentId}/suppliers 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": "SUP-001",
      "customerAssignedAccountId": {
        "id": "SUP-001",
        "schemeId": "supplierId"
      },
      "party": {
        "partyIdentification": [],
        "partyName": {
          "name": "Acme Supplies",
          "languageId": "ENG"
        },
        "postalAddress": null,
        "partyLegalEntity": null,
        "contact": null,
        "endpointId": null
      },
      "deliveryAddresses": [],
      "description": null,
      "financialDimensions": [],
      "active": true,
      "currency": "SEK",
      "paymentMeans": [
        {
          "paymentChannelCode": "IBAN",
          "payeeFinancialAccounts": [
            {
              "id": "SE3550000000054910000003",
              "financialInstitution": "Swedbank"
            }
          ],
          "payeeFinancialAccount": "SE3550000000054910000003",
          "financialAccount": {
            "id": "SE3550000000054910000003",
            "financialInstitution": "Swedbank"
          }
        }
      ]
    }
  ]
}

Get a supplier by ID

get

Retrieves a single supplier by its identifier.

System support

System
Status

Fortnox

Fortnox

πŸ“ž Not supported / contact us

Bjorn Lunden

Bjorn Lunden

πŸ“ž Not supported / contact us

Spiris

Spiris

πŸ“ž Not supported / contact us

Tripletex

Tripletex

πŸ“ž Not supported / contact us

Visma e-conomic

Visma e-conomic

πŸ“ž Not supported / contact us

Billy

Billy

βœ… Supported

Visma Dinero

Visma Dinero

βœ… Supported

Procountor

Procountor

πŸ“ž Not supported / contact us

Visma Netvisor

Visma Netvisor

πŸ“ž Not supported / contact us

Microsoft Business Central

Microsoft Business Central

πŸ“ž Not supported / contact us

Exact Online

Exact Online

βœ… Supported

QuickBooks

QuickBooks

βœ… Supported

Xero

Xero

βœ… Supported

Bokio

Bokio

πŸ“ž Not supported / contact us

Kleer

Kleer

πŸ“ž Not supported / contact us

Authorizations
x-api-keystringRequired

Use the API key to access all API endpoints.

Path parameters
consentIdstring Β· uuidRequired

Identifier of the consent representing the connection to the accounting system.

supplierIdstringRequired

Identifier of the supplier.

Header parameters
x-correlation-idstring Β· uuidRequired

Unique identifier used to correlate and trace this request.

Responses
200

Returns the requested supplier.

application/json

Represents a supplier entity in the accounting system.

idstring Β· nullableOptional

Unique identifier for the supplier.

activeboolean Β· nullableOptional

Indicates whether the supplier is active.

currencystring Β· nullableOptional

Currency code associated with the supplier.

get/api/v1/consents/{consentId}/suppliers/{supplierId}
GET /accounting/api/v1/consents/{consentId}/suppliers/{supplierId} HTTP/1.1
Host: apione.zwapgrid.com
x-api-key: YOUR_API_KEY
x-correlation-id: 123e4567-e89b-12d3-a456-426614174000
Accept: */*
{
  "id": "SUP-001",
  "customerAssignedAccountId": {
    "id": "SUP-001",
    "schemeId": "supplierId"
  },
  "party": {
    "partyIdentification": [],
    "partyName": {
      "name": "Acme Supplies",
      "languageId": "ENG"
    },
    "postalAddress": null,
    "partyLegalEntity": null,
    "contact": null,
    "endpointId": null
  },
  "deliveryAddresses": [],
  "description": null,
  "financialDimensions": [],
  "active": true,
  "currency": "SEK",
  "paymentMeans": [
    {
      "paymentChannelCode": "IBAN",
      "payeeFinancialAccounts": [
        {
          "id": "SE3550000000054910000003",
          "financialInstitution": "Swedbank"
        }
      ],
      "payeeFinancialAccount": "SE3550000000054910000003",
      "financialAccount": {
        "id": "SE3550000000054910000003",
        "financialInstitution": "Swedbank"
      }
    }
  ]
}

Last updated

Was this helpful?