cURL
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" }
Creates a new project in the workspace. Projects are used to organize related applications together.
Bearer token for authentication. Format: 'Bearer {token}'
Workspace ID (uses default workspace if not provided)
Create a new project
Project name (must be unique within the workspace)
Brief description of the project's purpose
Api_V1_Entities_Project model
Project UUID
Project name
Project description
Creation timestamp
Last update timestamp