GET api/EmployeeClaimsQueues/QueueDocument/{documentId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| documentId |
integer |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ClaimQueueDocument| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
integer |
integer |
None. |
| FileType |
string |
string |
None. |
| Content | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"FileType": "sample string 2",
"Content": "QEA="
}
application/xml, text/xml
Sample:
<ClaimQueueDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCIntegration.Models"> <Content>QEA=</Content> <FileType>sample string 2</FileType> <Id>1</Id> </ClaimQueueDocument>