Skip to main content
GET
/
api
/
v1
/
projects
/
{id}
Get a project by ID with statuses, sections, milestones, and counts.
curl --request GET \
  --url https://api.backside.app/api/v1/projects/{id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "identifier": "<string>",
  "is_archived": true,
  "is_private": true,
  "metadata": "<unknown>",
  "name": "<string>",
  "next_task_number": 123,
  "status": "<string>",
  "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "updated_at": "2023-11-07T05:31:56Z",
  "member_count": 123,
  "milestones": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metadata": "<unknown>",
      "name": "<string>",
      "position": 123,
      "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "<string>",
      "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "updated_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "target_date": "2023-12-25"
    }
  ],
  "sections": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metadata": "<unknown>",
      "name": "<string>",
      "position": 123,
      "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "statuses": [
    {
      "category": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metadata": "<unknown>",
      "name": "<string>",
      "position": 123,
      "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "updated_at": "2023-11-07T05:31:56Z",
      "color": "<string>",
      "description": "<string>"
    }
  ],
  "task_count": 123,
  "default_status_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "deleted_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "start_date": "2023-12-25",
  "target_date": "2023-12-25"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Project ID

Response

Project details

created_at
string<date-time>
required
id
string<uuid>
required
identifier
string
required
is_archived
boolean
required
is_private
boolean
required
metadata
any
required
name
string
required
next_task_number
integer<int32>
required
status
string
required
tenant_id
string<uuid>
required
updated_at
string<date-time>
required
member_count
integer<int64>
required
milestones
object[]
required
sections
object[]
required
statuses
object[]
required
task_count
integer<int64>
required
default_status_id
string<uuid> | null
deleted_at
string<date-time> | null
description
string | null
start_date
string<date> | null
target_date
string<date> | null