GET
/
timmi-project
/
api
/
organizations
curl --request GET \
  --url https://{host}/timmi-project/api/organizations \
  --header 'Authorization: <authorization>'
{
  "data": {
    "items": [
      {
        "id": 123,
        "name": "<string>",
        "country": {
          "id": 123,
          "name": "<string>",
          "code": "<string>",
          "currencyId": "EUR"
        },
        "legalEntities": [
          {
            "id": 123,
            "name": "<string>",
            "code": "<string>",
            "countryId": 123
          }
        ]
      }
    ]
  }
}

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Response

200
application/json
OK

The response is of type object.