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": "289aff7d-5f28-46b2-bce7-3411bd08b4cb",
"organisationTypeId": "e2f77364-79ed-487f-85f8-ffeeaf09144c",
"name": "sample string 3",
"hasChildren": true,
"isLowestOrganisationType": true
},
{
"id": "289aff7d-5f28-46b2-bce7-3411bd08b4cb",
"organisationTypeId": "e2f77364-79ed-487f-85f8-ffeeaf09144c",
"name": "sample string 3",
"hasChildren": true,
"isLowestOrganisationType": true
}
]
text/html
Sample:
[{"id":"289aff7d-5f28-46b2-bce7-3411bd08b4cb","organisationTypeId":"e2f77364-79ed-487f-85f8-ffeeaf09144c","name":"sample string 3","hasChildren":true,"isLowestOrganisationType":true},{"id":"289aff7d-5f28-46b2-bce7-3411bd08b4cb","organisationTypeId":"e2f77364-79ed-487f-85f8-ffeeaf09144c","name":"sample string 3","hasChildren":true,"isLowestOrganisationType":true}]