Skip to main content
GET
/
api
/
workspaces
/
{id}
/
projects
/
{project_id}
Get Project
curl --request GET \
  --url http://localhost:8080/api/workspaces/{id}/projects/{project_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "workspace_id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "status": "<string>",
  "priority": "<string>",
  "tags": [
    "<string>"
  ],
  "created_at": "<string>",
  "updated_at": "<string>",
  "phases": []
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
project_id
string
required

Response

Successful Response

id
string
required
workspace_id
string
required
name
string
required
description
string
required
status
string
required
priority
string
required
tags
string[]
required
created_at
string
required
updated_at
string
required
phases
PhaseResponse · object[]