GET api/Folder?parentId={parentId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| parentId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Folder| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| PRE_PARENT_ID | integer |
None. |
|
| PARENT_ID | integer |
None. |
|
| NOME | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"PRE_PARENT_ID": 2,
"PARENT_ID": 3,
"NOME": "sample string 4"
},
{
"ID": 1,
"PRE_PARENT_ID": 2,
"PARENT_ID": 3,
"NOME": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfFolder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NowTicket_API.Models">
<Folder>
<ID>1</ID>
<NOME>sample string 4</NOME>
<PARENT_ID>3</PARENT_ID>
<PRE_PARENT_ID>2</PRE_PARENT_ID>
</Folder>
<Folder>
<ID>1</ID>
<NOME>sample string 4</NOME>
<PARENT_ID>3</PARENT_ID>
<PRE_PARENT_ID>2</PRE_PARENT_ID>
</Folder>
</ArrayOfFolder>