GET api/CHILDREN/CUSTODIAN?customdianId={customdianId}
Get all ACTIVE children for a specific or current CUSTODIAN odered by CHILD_NAME
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customdianId |
Optional. Default value is currently logged in CUSTODIAN's ID. The CUSTODIAN ID value. |
integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
CHILDREN_GET_RESPONSE| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | Status |
None. |
|
| Page | Page |
None. |
|
| DATA | Collection of CHILDREN |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": {
"Success": true,
"Code": "0",
"DetailedMessage": "sample string 3",
"Message": "sample string 2"
},
"Page": {
"PageSize": 4,
"PageNo": 3,
"PagesCount": 2,
"TotalRecords": 1
},
"DATA": [
{
"ACTIVE": true,
"CHILD_ID": 1,
"NOTES": "sample string 6",
"CHILD_SCODE": "sample string 4",
"CHILD_QR_CODE": "sample string 3",
"CHILD_NAME": "sample string 2"
},
{
"ACTIVE": true,
"CHILD_ID": 1,
"NOTES": "sample string 6",
"CHILD_SCODE": "sample string 4",
"CHILD_QR_CODE": "sample string 3",
"CHILD_NAME": "sample string 2"
}
]
}
