Returns detailed information about a single project identified by projectId.
Access is restricted based on token scope and permissions.
If the project does not exist or is not accessible to the authenticated actor, a 404 Not Found response is returned.
This endpoint does not modify any data.
Use this endpoint when you need to:
curl -X GET https://api.hawzu.com/api/v1/workspace/{workspaceId}/project/{projectId} \
-H "Authorization: Bearer YOUR_API_TOKEN"This endpoint accepts the following path parameters:
| Parameter | Required | Description |
|---|---|---|
workspaceId | ✅ Yes | The ID of the workspace to get the project for |
projectId | ✅ Yes | The ID of the project to get |
| Header | Required | Description |
|---|---|---|
Authorization | ✅ Yes | Bearer token in the format Bearer <API_TOKEN> |
{
"data": {
"project_id": "proj_101",
"name": "Hawzu Core",
"workspace_id": "ws_001",
"description": "Main test management project",
"created_at": "2025-01-02T00:00:00Z"
}
}