GET api/file/productlinks?product={product}&filter={filter}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
product | string |
Required |
|
filter | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of DocumentLinkName | Description | Type | Additional information |
---|---|---|---|
FilePath | string |
Required |
|
ShortName | string |
None. |
|
LinkID | integer |
None. |
|
FileSize | integer |
None. |
|
Comment | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "FilePath": "sample string 1", "ShortName": "sample string 2", "LinkID": 3, "FileSize": 4, "Comment": "sample string 5" }, { "FilePath": "sample string 1", "ShortName": "sample string 2", "LinkID": 3, "FileSize": 4, "Comment": "sample string 5" } ]
application/xml, text/xml
Sample:
<ArrayOfDocumentLink xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.CO"> <DocumentLink> <Comment>sample string 5</Comment> <FilePath>sample string 1</FilePath> <FileSize>4</FileSize> <LinkID>3</LinkID> <ShortName>sample string 2</ShortName> </DocumentLink> <DocumentLink> <Comment>sample string 5</Comment> <FilePath>sample string 1</FilePath> <FileSize>4</FileSize> <LinkID>3</LinkID> <ShortName>sample string 2</ShortName> </DocumentLink> </ArrayOfDocumentLink>