GET v1/Documents/Images?entityId={entityId}
Get a list of images associated to the contact
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| entityId |
Id of the entity |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of images
Collection of DocumentImageListItemDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Selected |
Signifies whether the document is selected |
boolean |
None. |
| BlobInfoId |
Id of the document |
integer |
None. |
| Title |
Title of the document |
string |
None. |
| DateAddedFormated |
Date when the document was added (formatted) |
string |
None. |
| Type |
Type of the document |
string |
None. |
| AddedBy |
Document added by |
string |
None. |
| PolicyNumbers |
Policy numbers |
string |
None. |
| DateAdded |
Date when the document was added |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Selected": true,
"BlobInfoId": 2,
"Title": "sample string 3",
"DateAddedFormated": "sample string 4",
"Type": "sample string 5",
"AddedBy": "sample string 6",
"PolicyNumbers": "sample string 7",
"DateAdded": "2026-08-25T17:22:59.4848134+00:00"
},
{
"Selected": true,
"BlobInfoId": 2,
"Title": "sample string 3",
"DateAddedFormated": "sample string 4",
"Type": "sample string 5",
"AddedBy": "sample string 6",
"PolicyNumbers": "sample string 7",
"DateAdded": "2026-08-25T17:22:59.4848134+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfDocumentImageListItemDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Files">
<DocumentImageListItemDTO>
<AddedBy>sample string 6</AddedBy>
<BlobInfoId>2</BlobInfoId>
<DateAdded>2026-08-25T17:22:59.4848134+00:00</DateAdded>
<DateAddedFormated>sample string 4</DateAddedFormated>
<PolicyNumbers>sample string 7</PolicyNumbers>
<Selected>true</Selected>
<Title>sample string 3</Title>
<Type>sample string 5</Type>
</DocumentImageListItemDTO>
<DocumentImageListItemDTO>
<AddedBy>sample string 6</AddedBy>
<BlobInfoId>2</BlobInfoId>
<DateAdded>2026-08-25T17:22:59.4848134+00:00</DateAdded>
<DateAddedFormated>sample string 4</DateAddedFormated>
<PolicyNumbers>sample string 7</PolicyNumbers>
<Selected>true</Selected>
<Title>sample string 3</Title>
<Type>sample string 5</Type>
</DocumentImageListItemDTO>
</ArrayOfDocumentImageListItemDTO>