POST
/
api
/
v1
/
projects
Create a new project
curl --request POST \
  --url https://app.miget.com/api/v1/projects \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "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)

Body

application/json

Create a new project

name
string
required

Project name (must be unique within the workspace)

description
string

Brief description of the project's purpose

Response

Create a new project

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