GET restapi/personal/children/v1
Gets the related children details for a given person
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
EntityListOfItslearning.RestApi.Entities.ChildV2Name | Description | Type | Additional information |
---|---|---|---|
EntityArray | Collection of Itslearning.RestApi.Entities.ChildV2 |
None. |
|
Total | integer |
None. |
|
CurrentPageIndex | integer |
None. |
|
PageSize | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "EntityArray": [ { "PersonId": 3, "FirstName": "sample string 4", "LastName": "sample string 5", "School": "sample string 1", "FullName": "sample string 6", "ProfileImageUrl": "sample string 2" }, { "PersonId": 3, "FirstName": "sample string 4", "LastName": "sample string 5", "School": "sample string 1", "FullName": "sample string 6", "ProfileImageUrl": "sample string 2" } ], "Total": 1, "CurrentPageIndex": 2, "PageSize": 3 }
application/xml, text/xml
Sample:
<EntityList xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <CurrentPageIndex>2</CurrentPageIndex> <EntityArray xmlns:d2p1="http://schemas.datacontract.org/2004/07/Itslearning.RestApi.Entities"> <d2p1:ChildV2> <d2p1:PersonId>3</d2p1:PersonId> <d2p1:FirstName>sample string 4</d2p1:FirstName> <d2p1:LastName>sample string 5</d2p1:LastName> <d2p1:FullName>sample string 6</d2p1:FullName> <d2p1:School>sample string 1</d2p1:School> <d2p1:ProfileImageUrl>sample string 2</d2p1:ProfileImageUrl> </d2p1:ChildV2> <d2p1:ChildV2> <d2p1:PersonId>3</d2p1:PersonId> <d2p1:FirstName>sample string 4</d2p1:FirstName> <d2p1:LastName>sample string 5</d2p1:LastName> <d2p1:FullName>sample string 6</d2p1:FullName> <d2p1:School>sample string 1</d2p1:School> <d2p1:ProfileImageUrl>sample string 2</d2p1:ProfileImageUrl> </d2p1:ChildV2> </EntityArray> <PageSize>3</PageSize> <Total>1</Total> </EntityList>