GET api/sitedocuments/{documentIdOrGlobalId}

Get a site document by identifier.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
documentIdOrGlobalId

The site document identifier.

string

Required

Body Parameters

None.

Response Information

Resource Description

SiteDocumentViewModel
NameDescriptionTypeAdditional information
DocumentId

Gets or sets the identifier.

integer

Read-only

SiteId

Gets or sets the site ID.

integer

Required

Name

Gets or sets the Name.

string

Required

Invalid Chars: \/:*?<>|"

Max length: 255

ContentType

Gets or sets the document content type.

string

Required

Max length: 255

Size

Gets or sets the content size.

decimal number

None.

CreatedTime

Gets or sets the content creation time.

date

Read-only

ModifiedTime

Gets or sets the content modification time.

date

Read-only

FolderId

Gets or sets the folder id.

integer

None.

OwnerName

Gets the owner username.

string

Max length: 255

Read-only

Description

Gets or sets the document description.

string

Max length: 1000

GlobalId

Gets or sets the global identifier (a GUID). Can only set on create.

globally unique identifier

Read-only

Links

Gets the links.

Collection of LinkModel

None.

Response Formats

application/json, text/json

Sample:
{
  "documentId": 1,
  "siteId": 2,
  "name": "sample string 3",
  "contentType": "sample string 4",
  "size": 5.1,
  "createdTime": "2025-04-03T23:58:20.858291+00:00",
  "modifiedTime": "2025-04-03T23:58:20.858291+00:00",
  "folderId": 8,
  "ownerName": "sample string 10",
  "description": "sample string 11",
  "globalId": "97ea662b-cac2-4dc6-a1a5-9ac3a05396d5"
}

application/xml, text/xml

Sample:
<SiteDocumentViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TelogWebAPI.Models">
  <ContentType>sample string 4</ContentType>
  <CreatedTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-04-03T23:58:20.858291Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CreatedTime>
  <Description>sample string 11</Description>
  <DocumentId>1</DocumentId>
  <FolderId>8</FolderId>
  <GlobalId>97ea662b-cac2-4dc6-a1a5-9ac3a05396d5</GlobalId>
  <ModifiedTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-04-03T23:58:20.858291Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </ModifiedTime>
  <Name>sample string 3</Name>
  <OwnerName>sample string 10</OwnerName>
  <SiteId>2</SiteId>
  <Size>5.1</Size>
</SiteDocumentViewModel>