List organizations.
Conforms to the API v3 constraints (?fields, ?paging, etc…).
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
}
]
}
]
}
}
API key. Value must be formatted like so: lucca application={api_key}
.
OK
The response is of type object
.
Was this page helpful?
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
}
]
}
]
}
}