Retrieve Organization

Retrieves the details of the authenticated organization from the used API key. If the organization has child organizations (e.g., a Vendor with sub-organizations), they will be listed in the Children property. If the organization is a child, the parent organization will be listed in the Parent property.

GET /api/organizations

Returns #

Returns the organization object with optional hierarchy details.

{
  "Id": 10,
  "Name": "My Print Shop",
  "Address": "123 Print St",
  "PostCode": "1000",
  "City": "Copenhagen",
  "Country": "DK",
  "Language": "da-DK",
  "CVR": "12345678",
  "Children": [
    {
      "Id": 12,
      "Name": "Client A",
      ...
    }
  ]
}