GET v2/cases/{caseId}/attachments
Receive Information about Attachments that belong to a service case
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
caseId |
Id of service case |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Details about attached Files
Collection of InitPro.Ida.Web.Api.Dto.AttachmentDetailsName | Description | Type | Additional information |
---|---|---|---|
AttachmentId | integer |
None. |
|
Filename | string |
None. |
|
Mime | string |
None. |
|
Category | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "AttachmentId": 1, "Filename": "sample string 2", "Mime": "sample string 3", "Category": "sample string 4" }, { "AttachmentId": 1, "Filename": "sample string 2", "Mime": "sample string 3", "Category": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfAttachmentDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto"> <AttachmentDetails> <AttachmentId>1</AttachmentId> <Category>sample string 4</Category> <Filename>sample string 2</Filename> <Mime>sample string 3</Mime> </AttachmentDetails> <AttachmentDetails> <AttachmentId>1</AttachmentId> <Category>sample string 4</Category> <Filename>sample string 2</Filename> <Mime>sample string 3</Mime> </AttachmentDetails> </ArrayOfAttachmentDetails>