GET 1.0/{InstanceId}/Folders/{FolderId}/Documents?Skip={Skip}&Take={Take}&IncludeSubFolders={IncludeSubFolders}

Returns a list of Document objects for a specific folder

Request Information

URI Parameters

API Parameter Details
NameDescriptionTypeAdditional information
InstanceId

The instance ID relating to a specific ADM database

string

Required

FolderId

The ID of the folder whose Document Results should be returned

integer

Required

DocTypeId

The Document Type ID to filter the search resutls by

integer

Required

SortAttribute

Contains the information required to sort the document results of a query

SortAttribute

Required

Skip

The starting point from which to take the page

integer

Required

Take

The quantity of items to take (page size)

integer

Required

IncludeSubFolders

Indicates results should recurse through sub folders

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

A list of Document objects

Collection of Document
API Parameter Details
NameDescriptionTypeAdditional information
Id

The ID of the document

integer

None.

DocumentProperties

Contains a list of document attributes

DocumentProperties

None.

IndexingInfo

Contains Document Tag values, relating to a specific Document Type

IndexingInfo

None.

ContextPermissions

Contains a list of permissions that have been Allowed or Denied for this document

Collection of PermissionValuePair

None.

Versions

Contains a URL listing all versions of this document

string

None.

Notes

Contains a URL listing all Document Notes related to this document

string

None.

AuditEvents

Contains a list of Audit Events related to this document

string

None.

CurrentUserFollower

If this document is being followed by the current user, then this object is populated for the document / current user combination

Follower

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "DocumentProperties": {
      "FolderPath": "sample string 1",
      "ParentFolderId": 2,
      "Title": "sample string 3",
      "AddedByUserId": 4,
      "AddedByCloudGUID": "sample string 5",
      "AddedOn": "2025-05-19T14:27:17.8362625+01:00",
      "FileExt": "sample string 7",
      "CheckedOut": true,
      "Deleted": true
    },
    "IndexingInfo": {
      "DocTypeId": 1,
      "TagValues": [
        {
          "TagId": 1,
          "TagValue": {}
        },
        {
          "TagId": 1,
          "TagValue": {}
        }
      ]
    },
    "ContextPermissions": [
      {
        "Type": "Add",
        "Value": "Deny"
      },
      {
        "Type": "Add",
        "Value": "Deny"
      }
    ],
    "Versions": "sample string 2",
    "Notes": "sample string 3",
    "AuditEvents": "sample string 4",
    "CurrentUserFollower": {
      "Id": 1,
      "UserId": 2,
      "FollowerCloudGUID": "sample string 3"
    }
  },
  {
    "Id": 1,
    "DocumentProperties": {
      "FolderPath": "sample string 1",
      "ParentFolderId": 2,
      "Title": "sample string 3",
      "AddedByUserId": 4,
      "AddedByCloudGUID": "sample string 5",
      "AddedOn": "2025-05-19T14:27:17.8362625+01:00",
      "FileExt": "sample string 7",
      "CheckedOut": true,
      "Deleted": true
    },
    "IndexingInfo": {
      "DocTypeId": 1,
      "TagValues": [
        {
          "TagId": 1,
          "TagValue": {}
        },
        {
          "TagId": 1,
          "TagValue": {}
        }
      ]
    },
    "ContextPermissions": [
      {
        "Type": "Add",
        "Value": "Deny"
      },
      {
        "Type": "Add",
        "Value": "Deny"
      }
    ],
    "Versions": "sample string 2",
    "Notes": "sample string 3",
    "AuditEvents": "sample string 4",
    "CurrentUserFollower": {
      "Id": 1,
      "UserId": 2,
      "FollowerCloudGUID": "sample string 3"
    }
  }
]