Qubitro Documentation
SupportLog inSign Up
  • Documentation
  • Guides
  • Developers
  • Changelog
  • Qubitro REST API
  • API Reference
    • Projects
      • Create Project
      • Retrieve Projects
      • Retrieve Project by ID
      • Delete Project
      • Invite Collaborator
    • Devices
      • Create Device
      • Retrieve Devices
      • Get Device by ID
      • Delete Device
    • Storage
      • Retrieve Device Data
      • Purge Device Data
      • Retrieve Device Data Keys
      • Retrieve Device Data From Storage View
    • Aggregated View
      • Retrieve Aggregated Views
      • Retrieve Aggregated View Data
      • Retrieve Aggregated View Data Keys
      • Purge Aggregated View Data
    • Dashboards
      • Retrieve Dashboards
      • Invite Collaborator
    • Organization
      • Invite Member
      • Retrieve Groups
Powered by GitBook
On this page
Export as PDF
  1. API Reference
  2. Projects

Create Project

Allows to create a new project.

PreviousProjectsNextRetrieve Projects

Last updated 2 months ago

Create Project

post
Authorizations
Body
objectOptionalExample: {"name":"string","description":"string"}
Responses
201
Created
application/json
Responseobject
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
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"
  }
}