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| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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"
}