GET api/GetFileNames/{cultureName}/{category}/{collection}?id={id}&type={type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
|
| type | string |
Required |
|
| cultureName | string |
None. |
|
| category | string |
None. |
|
| collection | string |
None. |
Body Parameters
None.
Response Information
Resource Description
FileNames| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| ErrorText | string |
None. |
|
| fileCount | integer |
None. |
|
| type | string |
None. |
|
| nameList | Collection of NameList |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"ErrorText": "sample string 2",
"fileCount": 3,
"type": "sample string 4",
"nameList": [
{
"name": "sample string 1"
},
{
"name": "sample string 1"
}
]
}
text/xml
Sample:
<FileNames xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StenskivorAPP.Models">
<ErrorText>sample string 2</ErrorText>
<Status>sample string 1</Status>
<fileCount>3</fileCount>
<nameList>
<NameList>
<name>sample string 1</name>
</NameList>
<NameList>
<name>sample string 1</name>
</NameList>
</nameList>
<type>sample string 4</type>
</FileNames>