curl --request GET \
--url https://{host}/timmi-project/api/organizations \
--header 'Authorization: <authorization>'{
"data": {
"items": [
{
"name": "<string>",
"id": 123,
"country": {
"id": 123,
"name": "<string>",
"code": "<string>",
"currencyId": "EUR"
},
"legalEntities": [
{
"id": 123,
"name": "<string>",
"code": "<string>",
"countryId": 123
}
]
}
]
}
}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": [
{
"name": "<string>",
"id": 123,
"country": {
"id": 123,
"name": "<string>",
"code": "<string>",
"currencyId": "EUR"
},
"legalEntities": [
{
"id": 123,
"name": "<string>",
"code": "<string>",
"countryId": 123
}
]
}
]
}
}Was this page helpful?