GET api/Documents/{id}

Fetch a specific document

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Document
NameDescriptionTypeAdditional information
ContentType

string

None.

Content

string

None.

ParseLanguage

string

None.

CompanyId

integer

None.

Name

string

None.

LastModified

date

None.

Created

date

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ContentType": "sample string 1",
  "Content": "sample string 2",
  "ParseLanguage": "sample string 3",
  "CompanyId": 4,
  "Name": "sample string 5",
  "LastModified": "2025-12-08T14:25:48.0125369+00:00",
  "Created": "2025-12-08T14:25:48.0125369+00:00",
  "Id": 8
}

application/xml, text/xml

Sample:
<Document xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel">
  <Id>8</Id>
  <Created>2025-12-08T14:25:48.0125369+00:00</Created>
  <LastModified>2025-12-08T14:25:48.0125369+00:00</LastModified>
  <Name>sample string 5</Name>
  <CompanyId>4</CompanyId>
  <Content>sample string 2</Content>
  <ContentType>sample string 1</ContentType>
  <ParseLanguage>sample string 3</ParseLanguage>
</Document>