GET Child/Get?ParentId={ParentId}
Get List Of child by ParentID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
ParentId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResultModelOfListOfChildModelName | Description | Type | Additional information |
---|---|---|---|
StatusCode | string |
None. |
|
StatusMessage | string |
None. |
|
Value | Collection of ChildModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "StatusCode": "sample string 1", "StatusMessage": "sample string 2", "Value": [ { "ID": 1, "ParentID": 2, "Gender": "sample string 3", "Name": "sample string 4", "PlaceOfBirth": "sample string 5", "Birthdate": "sample string 6", "ProductBeforeID": 7, "Productbefore": { "ID": 1, "Name": "sample string 2", "IsDeleted": true, "IsPregnancyProduct": true }, "IsDeleted": true }, { "ID": 1, "ParentID": 2, "Gender": "sample string 3", "Name": "sample string 4", "PlaceOfBirth": "sample string 5", "Birthdate": "sample string 6", "ProductBeforeID": 7, "Productbefore": { "ID": 1, "Name": "sample string 2", "IsDeleted": true, "IsPregnancyProduct": true }, "IsDeleted": true } ] }