curl --request PUT \
--url https://api.getcargo.io/v1/workspaceManagement/folders/{uuid} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"emojiSlug": "<string>",
"order": 123,
"parentUuid": "<string>"
}
'{
"folder": {
"uuid": "<string>",
"parentUuid": "<string>",
"kind": "play",
"workspaceUuid": "<string>",
"name": "<string>",
"emojiSlug": "<string>",
"isReadOnly": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
}Update a folder
curl --request PUT \
--url https://api.getcargo.io/v1/workspaceManagement/folders/{uuid} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"emojiSlug": "<string>",
"order": 123,
"parentUuid": "<string>"
}
'{
"folder": {
"uuid": "<string>",
"parentUuid": "<string>",
"kind": "play",
"workspaceUuid": "<string>",
"name": "<string>",
"emojiSlug": "<string>",
"isReadOnly": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Successful response
Show child attributes
Was this page helpful?