GET api/organisations/{id}/children

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of API.Domain.ViewModels.Organisation.OrganisationChildItem
NameDescriptionTypeAdditional 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": "77991eb8-3af6-4346-b417-ecec6619de56",
    "organisationTypeId": "0ff988cc-18bc-42e5-9e50-2268444804e7",
    "name": "sample string 3",
    "hasChildren": true,
    "isLowestOrganisationType": true
  },
  {
    "id": "77991eb8-3af6-4346-b417-ecec6619de56",
    "organisationTypeId": "0ff988cc-18bc-42e5-9e50-2268444804e7",
    "name": "sample string 3",
    "hasChildren": true,
    "isLowestOrganisationType": true
  }
]

text/html

Sample:
[{"id":"77991eb8-3af6-4346-b417-ecec6619de56","organisationTypeId":"0ff988cc-18bc-42e5-9e50-2268444804e7","name":"sample string 3","hasChildren":true,"isLowestOrganisationType":true},{"id":"77991eb8-3af6-4346-b417-ecec6619de56","organisationTypeId":"0ff988cc-18bc-42e5-9e50-2268444804e7","name":"sample string 3","hasChildren":true,"isLowestOrganisationType":true}]