GET api/document/GetDocumentForListByAccountID?accountID={accountID}&showInactive={showInactive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountID

integer

Required

showInactive

boolean

Required

Body Parameters

None.

Response Information

Resource Description

DocumentForList
NameDescriptionTypeAdditional information
DocumentID

integer

None.

DocumentBlobVersionID

integer

None.

Document

string

None.

DocumentTemplate

string

None.

Response Formats

application/json, text/json

Sample:
{
  "DocumentID": 1,
  "DocumentBlobVersionID": 1,
  "Document": "sample string 2",
  "DocumentTemplate": "sample string 3"
}

application/xml, text/xml

Sample:
<DocumentForList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Document">
  <Document>sample string 2</Document>
  <DocumentBlobVersionID>1</DocumentBlobVersionID>
  <DocumentID>1</DocumentID>
  <DocumentTemplate>sample string 3</DocumentTemplate>
</DocumentForList>