GET api/CONFIG_API/GetItemsByParent?parentId={parentId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| parentId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
DataItemsResultModelOfCONFIG_API| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of CONFIG_API |
None. |
|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Detail | string |
None. |
|
| Total | integer |
None. |
|
| ID_OBJECT | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"APIID": "ea4055d4-4591-42d7-bca3-a7cf81ae1fa6",
"RETENCAO_DIAS": 2
},
{
"APIID": "ea4055d4-4591-42d7-bca3-a7cf81ae1fa6",
"RETENCAO_DIAS": 2
}
],
"Success": true,
"Message": "sample string 2",
"Detail": "sample string 3",
"Total": 4,
"ID_OBJECT": "37f5e27d-716b-4983-9902-3d65685f2124"
}
text/plain
Sample:
{"Items":[{"APIID":"ea4055d4-4591-42d7-bca3-a7cf81ae1fa6","RETENCAO_DIAS":2},{"APIID":"ea4055d4-4591-42d7-bca3-a7cf81ae1fa6","RETENCAO_DIAS":2}],"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"37f5e27d-716b-4983-9902-3d65685f2124"}
application/xml, text/xml
Sample:
<DataItemsResultModelOfCONFIG_APIpwo5oW_Py xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Model">
<Detail>sample string 3</Detail>
<ID_OBJECT>37f5e27d-716b-4983-9902-3d65685f2124</ID_OBJECT>
<Message>sample string 2</Message>
<Success>true</Success>
<Total>4</Total>
<Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities">
<d2p1:CONFIG_API>
<d2p1:APIID>ea4055d4-4591-42d7-bca3-a7cf81ae1fa6</d2p1:APIID>
<d2p1:RETENCAO_DIAS>2</d2p1:RETENCAO_DIAS>
</d2p1:CONFIG_API>
<d2p1:CONFIG_API>
<d2p1:APIID>ea4055d4-4591-42d7-bca3-a7cf81ae1fa6</d2p1:APIID>
<d2p1:RETENCAO_DIAS>2</d2p1:RETENCAO_DIAS>
</d2p1:CONFIG_API>
</Items>
</DataItemsResultModelOfCONFIG_APIpwo5oW_Py>