Skip to main content
GET
/
organizations
List Orgs
curl --request GET \
  --url https://sandbox.intermezzo.ai/organizations \
  --header 'Authorization: Bearer <token>'
[
  {
    "validFrom": "2023-12-25",
    "validTo": "2023-12-25",
    "legalName": "<string>",
    "legalAddress": "<string>",
    "correspondenceAddress": "<string>",
    "dbaName": "<string>",
    "registrationCountry": "DE",
    "incorporationDate": "2023-12-25",
    "website": "<string>",
    "externalRef": "<string>",
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "shutdownDate": "2023-12-25",
    "workSites": [
      {
        "validFrom": "2023-12-25",
        "validTo": "2023-12-25",
        "name": "<string>",
        "address": "<string>",
        "correspondenceAddress": "<string>",
        "isActive": true,
        "isPrimary": true,
        "id": "<string>",
        "orgId": "<string>",
        "contacts": [
          {
            "name": "<string>",
            "email": "jsmith@example.com",
            "phone": {
              "phoneNumber": "<string>",
              "phoneType": "mobile"
            },
            "id": "<string>",
            "roles": [
              "<string>"
            ]
          }
        ],
        "taxIdentifiers": [],
        "insuranceData": [],
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "bankAccounts": [
      {
        "financialInstitutionName": "Deutsche Bank",
        "accountNumber": "DE89370400440532013000",
        "routingNumber": "<string>",
        "iban": "<string>",
        "isActive": true,
        "isPrimary": false,
        "id": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "contacts": [
      {
        "name": "<string>",
        "email": "jsmith@example.com",
        "phone": {
          "phoneNumber": "<string>",
          "phoneType": "mobile"
        },
        "id": "<string>",
        "roles": [
          "<string>"
        ]
      }
    ],
    "taxIdentifiers": [],
    "insuranceData": [],
    "sepaMandates": [],
    "preferences": {
      "isInsolvent": false,
      "insolvencyStartDate": "2023-12-25",
      "insolvencyEndDate": "2023-12-25",
      "insolvencyCompanyNumber": "<string>",
      "insuranceSubsidyMethod": "remuneration",
      "extraPaidLeaveDays": 123,
      "insuranceCreditPreference": "<string>",
      "firstPayrollDate": "2023-12-25",
      "lastPayrollDate": "2023-12-25",
      "firstPayrollIntermezzo": "2023-12-25",
      "daysForSicknessCertificate": 123,
      "additionalChildcareSickDaysReason": 0
    }
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

registrationCountry
enum<string>
required

Enum for CountryAlpha2 codes

Available options:
DE,
IE,
GB,
US,
GB
id
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
workSites
WorkSiteResponse · object[] | null
required
bankAccounts
BankAccountResponse · object[] | null
required
validFrom
string<date> | null
validTo
string<date> | null
correspondenceAddress
string | null
dbaName
string | null
incorporationDate
string<date> | null
website
string | null
externalRef
string | null
Maximum length: 255
shutdownDate
string<date> | null
contacts
ContactResponse · object[] | null
taxIdentifiers
TaxIdentifiersResponse · object[]
insuranceData
GermanyOrganizationInsuranceDetailsResponse · object[]
sepaMandates
SepaMandateResponse · object[]
preferences
object | null
I