Get Folder Details

Written By Team BugSmash

Last updated 10 days ago

METHOD: GET
URL: https://api.bugsmash.io/api/v2/folder/{folderId}

HEADERS:
  X-API-Key: YOUR_API_KEY
  Content-Type: application/json

PATH PARAMETERS:
  folderId  (uuid, required)  - The folder ID

CURL:
curl --location 'https://api.bugsmash.io/api/v2/folder/{folderId}' \
--header 'X-API-Key: YOUR_API_KEY'

RESPONSE:
{
  "status": true,
  "message": "Folder details",
  "data": {
    "id": "e5f6a7b8-c9d0-1234-efab-234567890124",
    "name": "Client Deliverables",
    "projects": [...],
    "folder_users": [...]
  }
}