GET api/organisations/{id}/children
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of API.Domain.ViewModels.Organisation.OrganisationChildItem| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| OrganisationTypeId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| HasChildren | boolean |
None. |
|
| IsLowestOrganisationType | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "b5c7d631-0d3e-43b0-8cd0-4c8ef2d82f71",
"organisationTypeId": "458793d3-d3b4-4687-9944-de1e77bfca18",
"name": "sample string 3",
"hasChildren": true,
"isLowestOrganisationType": true
},
{
"id": "b5c7d631-0d3e-43b0-8cd0-4c8ef2d82f71",
"organisationTypeId": "458793d3-d3b4-4687-9944-de1e77bfca18",
"name": "sample string 3",
"hasChildren": true,
"isLowestOrganisationType": true
}
]
text/html
Sample:
[{"id":"b5c7d631-0d3e-43b0-8cd0-4c8ef2d82f71","organisationTypeId":"458793d3-d3b4-4687-9944-de1e77bfca18","name":"sample string 3","hasChildren":true,"isLowestOrganisationType":true},{"id":"b5c7d631-0d3e-43b0-8cd0-4c8ef2d82f71","organisationTypeId":"458793d3-d3b4-4687-9944-de1e77bfca18","name":"sample string 3","hasChildren":true,"isLowestOrganisationType":true}]