Skip to main content
Get details of a specific invite

Tool details

FieldValue
Nameget_invite
GroupMembers

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "invite_id": {
      "type": "string",
      "description": "Invite ID"
    }
  },
  "required": [
    "project_reference",
    "invite_id"
  ],
  "additionalProperties": false,
  "description": "Input schema for the get_invite tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "email": {
      "type": "string",
      "description": "The email associated with this tool result."
    },
    "role": {
      "type": "string",
      "description": "The role associated with this tool result."
    },
    "project_id": {
      "type": "string",
      "description": "Project identifier associated with this result."
    },
    "invited_by": {
      "type": [
        "string",
        "null"
      ],
      "description": "The invited by associated with this tool result."
    },
    "created_at": {
      "type": [
        "string",
        "null"
      ],
      "description": "Creation timestamp in ISO 8601 format."
    }
  },
  "required": [
    "id",
    "email",
    "role",
    "project_id",
    "invited_by",
    "created_at"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the get_invite tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}