bugsnag · Schema

CollaboratorInvite

Request body for inviting a collaborator to an organization.

Properties

Name Type Description
email string The email address of the person to invite.
is_admin boolean Whether to grant administrator privileges.
project_ids array List of project IDs the collaborator should have access to.
View JSON Schema on GitHub

JSON Schema

bugsnag-collaboratorinvite-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollaboratorInvite",
  "title": "CollaboratorInvite",
  "type": "object",
  "description": "Request body for inviting a collaborator to an organization.",
  "required": [
    "email"
  ],
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "The email address of the person to invite."
    },
    "is_admin": {
      "type": "boolean",
      "description": "Whether to grant administrator privileges."
    },
    "project_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of project IDs the collaborator should have access to."
    }
  }
}