GET api/Documents/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
DocumentsData| Name | Description | Type | Additional information |
|---|---|---|---|
| DocID | integer |
None. |
|
| Title | string |
None. |
|
| Descr | string |
None. |
|
| ArtifactTypeID | integer |
None. |
|
| DocType | string |
None. |
|
| DocSize | integer |
None. |
|
| DocPages | integer |
None. |
|
| BlobID | integer |
None. |
|
| EntityRefID | integer |
None. |
|
| EntityType | string |
None. |
|
| Attach | boolean |
None. |
|
| OrderNum | integer |
None. |
|
| AddedBy | string |
None. |
|
| AddedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"DocID": 1,
"Title": "sample string 2",
"Descr": "sample string 3",
"ArtifactTypeID": 4,
"DocType": "sample string 5",
"DocSize": 6,
"DocPages": 7,
"BlobID": 8,
"EntityRefID": 9,
"EntityType": "sample string 10",
"Attach": true,
"OrderNum": 12,
"AddedBy": "sample string 13",
"AddedDate": "2026-02-10T16:13:24.3557048-08:00"
}
text/xml
Sample:
<DocumentsData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL"> <AddedBy>sample string 13</AddedBy> <AddedDate>2026-02-10T16:13:24.3557048-08:00</AddedDate> <ArtifactTypeID>4</ArtifactTypeID> <Attach>true</Attach> <BlobID>8</BlobID> <Descr>sample string 3</Descr> <DocID>1</DocID> <DocPages>7</DocPages> <DocSize>6</DocSize> <DocType>sample string 5</DocType> <EntityRefID>9</EntityRefID> <EntityType>sample string 10</EntityType> <OrderNum>12</OrderNum> <Title>sample string 2</Title> </DocumentsData>