Skip to content
English
  • There are no suggestions because the search field is empty.

Get project

GET /api/v1/projects/{projectId} Select code sample Fetch cURL
const url = 'https://localhost:10001/api/v1/projects/1';const options = {method: 'GET', headers: {Authorization: '
  
   '}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}
  
curl --request GET \  --url https://localhost:10001/api/v1/projects/1 \  --header 'Authorization: 
  
   '
  

Retrieve a specific project by its ID

Authorizations

Section titled “Authorizations ”

Parameters

Section titled “ Parameters ”

Path Parameters

Section titled “Path Parameters ” projectId required integer

Project ID

Responses

Section titled “ Responses ”

200

Section titled “200 ”

Project

Media type application/json object archivedAt string createdAt string description string id integer isArchived boolean name string organizationId integer status

Status field from auth-service

string updatedAt string uuid string
Example generated
{  "archivedAt": "example",  "createdAt": "example",  "description": "example",  "id": 1,  "isArchived": true,  "name": "example",  "organizationId": 1,  "status": "example",  "updatedAt": "example",  "uuid": "example"}

400

Section titled “400 ”

Bad request - Invalid project ID

Media type application/json object key additional properties string
Example generated
{  "additionalProperty": "example"}

401

Section titled “401 ”

Unauthorized - Authentication required

Media type application/json object key additional properties string
Example generated
{  "additionalProperty": "example"}

403

Section titled “403 ”

Forbidden - No project access

Media type application/json object key additional properties string
Example generated
{  "additionalProperty": "example"}

404

Section titled “404 ”

Project not found

Media type application/json object key additional properties string
Example generated
{  "additionalProperty": "example"}

500

Section titled “500 ”

Internal server error

Media type application/json object key additional properties string
Example generated
{  "additionalProperty": "example"}
Previous
Create project
Next
Set project archived state