Folder
Create a folder
POST
/
v1
/
folders
Copy
curl --request POST \
--url https://app.flowdacity.com/api/v1/folders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"workspaceId": "<string>",
"folderName": "",
"parentFolderId": "<string>"
}'
Copy
{
"folder": {
"id": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"name": "<string>",
"parentFolderId": "<string>",
"workspaceId": "<string>"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Successful response
The response is of type object
.
Copy
curl --request POST \
--url https://app.flowdacity.com/api/v1/folders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"workspaceId": "<string>",
"folderName": "",
"parentFolderId": "<string>"
}'
Copy
{
"folder": {
"id": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"name": "<string>",
"parentFolderId": "<string>",
"workspaceId": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.