GET
/
api
/
v1
/
projects
/
{project_id}
Get project details
curl --request GET \
  --url https://app.miget.com/api/v1/projects/{project_id} \
  --header 'Authorization: <api-key>'
{
  "uuid": 123,
  "name": "<string>",
  "description": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer token for authentication. Format: 'Bearer {token}'

Headers

X-Workspace-Id
string

Workspace ID (uses default workspace if not provided)

Path Parameters

project_id
string
required

Project ID or UUID

Response

Get project details

Api_V1_Entities_Project model

uuid
integer<int32>
required

Project UUID

name
string
required

Project name

description
string
required

Project description

created_at
string<date-time>
required

Creation timestamp

updated_at
string<date-time>
required

Last update timestamp