GET api/Attachment/GetAttachments?compagnyID={compagnyID}&DexRowID={DexRowID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| compagnyID | string |
Required |
|
| DexRowID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Attachment| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyDB | string |
None. |
|
| Attachment_ID | string |
None. |
|
| BinaryBlob | Collection of byte |
None. |
|
| fileName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CompanyDB": "sample string 1",
"Attachment_ID": "sample string 2",
"BinaryBlob": "QEA=",
"fileName": "sample string 3"
},
{
"CompanyDB": "sample string 1",
"Attachment_ID": "sample string 2",
"BinaryBlob": "QEA=",
"fileName": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfAttachment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Jovaco.WebServices.Web.Models">
<Attachment>
<Attachment_ID>sample string 2</Attachment_ID>
<BinaryBlob>QEA=</BinaryBlob>
<CompanyDB>sample string 1</CompanyDB>
<fileName>sample string 3</fileName>
</Attachment>
<Attachment>
<Attachment_ID>sample string 2</Attachment_ID>
<BinaryBlob>QEA=</BinaryBlob>
<CompanyDB>sample string 1</CompanyDB>
<fileName>sample string 3</fileName>
</Attachment>
</ArrayOfAttachment>