Create Project

Allows to create a new project.

Create Project

post
Authorizations
Body
objectOptionalExample: {"name":"string","description":"string"}
Responses
201
Created
application/json
Responseobject
post
POST /v2/projects HTTP/1.1
Host: api.qubitro.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "name": "string",
  "description": "string"
}
{
  "success": true,
  "action": "create project",
  "status": 201,
  "message": "Project created successfully.",
  "data": {
    "id": "string",
    "name": "string",
    "description": "string",
    "created_at": "2025-02-13T10:22:23.385246157Z"
  }
}

Last updated