GET api/folders/{id}

Returns information on the folder

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

the unique id of the folder

integer

Required

Body Parameters

None.

Response Information

Resource Description

Folder Details

SDFolder
NameDescriptionTypeAdditional information
i_node

Unique database id of the item

integer

None.

f_node

Unique database id of the item's parent, this is needed sometimes to figure out the structure of the content

integer

None.

item

Name\Title of the item

string

None.

description

Description of the item

string

None.

creator

User details who created the item

ViewUserDTO

None.

status

Current status of the item

string

None.

Response Formats

application/json, text/json

Sample:
{
  "i_node": 1,
  "f_node": 2,
  "item": "sample string 3",
  "description": "sample string 4",
  "creator": {
    "userID": 1,
    "userName": "sample string 2",
    "firstName": "sample string 3",
    "lastName": "sample string 4",
    "email": "sample string 5",
    "customFields": [
      {
        "values": [
          "sample string 1",
          "sample string 2"
        ],
        "guid": "sample string 1",
        "type": "sample string 2",
        "dataType": "sample string 3"
      },
      {
        "values": [
          "sample string 1",
          "sample string 2"
        ],
        "guid": "sample string 1",
        "type": "sample string 2",
        "dataType": "sample string 3"
      }
    ],
    "status": "sample string 6",
    "createDate": "2024-09-08T03:10:43.1883569+00:00",
    "groups": [
      {
        "name": "sample string 1",
        "id": 2
      },
      {
        "name": "sample string 1",
        "id": 2
      }
    ]
  },
  "status": "sample string 5"
}