Create a new folder#
Description#
Creates a folder using the provided information and returns the folder meta.
POST /api/v1/folder
Required OAuth Scopes
No OAuth scopes are required to use this endpoint.
Parameters#
Parameter |
In |
Type |
Required |
Description |
|---|---|---|---|---|
body |
body |
true |
The representation of the folder to create |
Body parameter example#
{
"description": "string",
"name": "string"
}
Code Samples#
curl -X POST https://h.app.wdesk.com/s/wdata/prep/api/v1/folder \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}'
http POST https://h.app.wdesk.com/s/wdata/prep/api/v1/folder \
Content-Type:application/json \
Accept:application/json \
Authorization:"Bearer {access-token}"
wget --method=POST "https://h.app.wdesk.com/s/wdata/prep/api/v1/folder" \
--output-document - \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {access-token}'
import requests
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Bearer {access-token}'
}
r = requests.post('https://h.app.wdesk.com/s/wdata/prep/api/v1/folder', headers = headers)
print(r.json())
Returns#
201 - Created#
Returns a JSON object with a body property, which contains a FolderDto object for the created folder.
Example Responses#
{
"body": {
"created": "string",
"description": "string",
"id": "string",
"name": "string",
"parentId": "string",
"updated": "string",
"userId": "string",
"version": "integer"
},
"code": "integer"
}