GET api/file/customerlinks?customer={customer}&filter={filter}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customer

string

Required

filter

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of DocumentLink
NameDescriptionTypeAdditional 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>