curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{id}Retrieve a specific project by ID
curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{id}{
"id": "proj123",
"organizationId": "org123",
"name": "Marketing Website",
"slug": "marketing-website",
"description": "Main marketing website content",
"status": "active",
"environment": "production",
"settings": {
"defaultLocale": "en-US",
"supportedLocales": ["en-US", "es-ES"],
"defaultPlatform": "desktop",
"supportedPlatforms": ["desktop", "mobile", "tablet"],
"thumbnailUrl": "https://cdn.acme.com/thumbnails/marketing-website.png",
"cdnDomain": "cdn.acme.com"
},
"dependencies": [
{
"projectId": "proj456",
"version": "2.0.0"
}
],
"permissions": {
"roles": {
"admin": ["user123"],
"editor": ["user456"]
},
"public": false
},
"metadata": {
"createdBy": "user123",
"tags": ["marketing", "website"]
},
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-20T10:00:00Z"
}
{
"error": {
"code": "NOT_FOUND",
"message": "Project not found",
"details": {
"id": "proj123"
}
}
}
curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects/proj123" \
-H "Authorization: Bearer YOUR_API_KEY"