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

Retrieve Projects

Allows to retrieve a list of all projects.

PreviousCreate ProjectNextRetrieve Project by ID

Last updated 2 months ago

Retrieve Projects

get
Authorizations
Responses
200
OK
application/json
Responseobject
401
Unauthorized
application/json
403
Forbidden
application/json
get
GET /v2/projects HTTP/1.1
Host: api.qubitro.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "success": true,
  "action": "get projects",
  "status": 200,
  "message": "Projects retrieved successfully.",
  "data": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "created_at": "2024-11-18T14:10:55.782Z"
    },
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "created_at": "2024-10-29T14:58:40.62Z"
    }
  ]
}