curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/folders/{id}Retrieve a specific folder by ID
curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/folders/{id}{
"id": "folder123",
"name": "Marketing Content Searches",
"parentId": null,
"type": "content",
"order": 1.0,
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-20T10:00:00Z"
}
{
"error": {
"code": "NOT_FOUND",
"message": "Folder not found",
"details": {
"id": "folder123"
}
}
}
curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects/proj456/folders/folder123" \
-H "Authorization: Bearer YOUR_API_KEY"