Skip to main content
GET
/
integrations
List integrations
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/integrations \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<id>",
      "object": "integration",
      "data": {
        "label": "Xero",
        "is_enabled": false,
        "type": "accounting"
      },
      "links": {
        "self": "/integrations/xero"
      }
    },
    {
      "id": "<id>",
      "object": "integration",
      "data": {
        "label": "QuickBooks",
        "is_enabled": false,
        "type": "accounting"
      },
      "links": {
        "self": "/integrations/quickbooks"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

business_entity_id
string
required

Response

200 - application/json

OK

object
string
read-only

The type of the object in Nmbr ("list").

data
object[]