curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projectsList all projects in an organization
curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projectsactive, archived, or deleted{
"data": [
{
"id": "proj123",
"organizationId": "org123",
"name": "Marketing Website",
"slug": "marketing-website",
"description": "Main marketing website content",
"status": "active",
"environment": "production",
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-20T10:00:00Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 42,
"pages": 3
}
}
curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects?status=active" \
-H "Authorization: Bearer YOUR_API_KEY"