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. Dashboards

Invite Collaborator

Allows to invite a collaborator to a dashboard.

PreviousRetrieve DashboardsNextOrganization

Last updated 2 months ago

Invite

post
Authorizations
Path parameters
DASHBOARD_IDstringRequired
Body
objectOptionalExample: {"users":[{"email":"string","role":"string"}],"groups":[{"id":"string","role":"string"}]}
Responses
200
OK
application/json
Responseobject
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
post
POST /v2/dashboards/{DASHBOARD_ID}/invite HTTP/1.1
Host: api.qubitro.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 89

{
  "users": [
    {
      "email": "string",
      "role": "string"
    }
  ],
  "groups": [
    {
      "id": "string",
      "role": "string"
    }
  ]
}
{
  "success": true,
  "action": "invite to dashboard",
  "status": 200,
  "message": "Dashboard invitation sent successfully."
}