GET api/DocumentBlob?filterExpression={filterExpression}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| filterExpression | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DocumentBlobData| Name | Description | Type | Additional information |
|---|---|---|---|
| BlobID | integer |
None. |
|
| BlobObject | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BlobID": 1,
"BlobObject": "QEA="
},
{
"BlobID": 1,
"BlobObject": "QEA="
}
]
text/xml
Sample:
<ArrayOfDocumentBlobData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL">
<DocumentBlobData>
<BlobID>1</BlobID>
<BlobObject>QEA=</BlobObject>
</DocumentBlobData>
<DocumentBlobData>
<BlobID>1</BlobID>
<BlobObject>QEA=</BlobObject>
</DocumentBlobData>
</ArrayOfDocumentBlobData>