GET v1/Tickets/{ticketId}/Files
Gets Ticket files.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ticketId |
The id of the Ticket. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
A collection of files.
Collection of FileBase| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier. |
integer |
Required |
| Filename |
Gets or sets the filename. |
string |
Required Max length: 255 |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Filename": "sample string 2"
},
{
"Id": 1,
"Filename": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfFileBase xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FileBase>
<Id>1</Id>
<Filename>sample string 2</Filename>
</FileBase>
<FileBase>
<Id>1</Id>
<Filename>sample string 2</Filename>
</FileBase>
</ArrayOfFileBase>