POST folder-objects

Creates a relation between a folder and an object.

Request Information

URI Parameters

None.

Body Parameters

The model containing the information to create the relation.

FolderObjectViewModel
NameDescriptionTypeAdditional information
Id

string

None.

Folder

BaseViewModel

Settable

Object

BaseViewModel

Settable

SelfUrl

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "folder": {
    "selfUrl": "sample string 1"
  },
  "object": {
    "selfUrl": "sample string 1"
  },
  "selfUrl": "sample string 2"
}

Response Information

Resource Description

FolderObjectViewModel
NameDescriptionTypeAdditional information
Id

string

None.

Folder

BaseViewModel

Settable

Object

BaseViewModel

Settable

SelfUrl

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "folder": {
    "selfUrl": "sample string 1"
  },
  "object": {
    "selfUrl": "sample string 1"
  },
  "selfUrl": "sample string 2"
}