Skip to main content
GET
/
workspaceManagement
/
folders
/
list
List folders
curl --request GET \
  --url https://api.getcargo.io/v1/workspaceManagement/folders/list \
  --header 'Authorization: Bearer <token>'
{
  "folders": [
    {
      "uuid": "<string>",
      "parentUuid": "<string>",
      "kind": "play",
      "workspaceUuid": "<string>",
      "name": "<string>",
      "emojiSlug": "<string>",
      "isReadOnly": true,
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "deletedAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

Response body schema.

folders
object[]
required