PandaDoc · Schema

Member

A workspace member representing a PandaDoc user within a workspace.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
id string Unique identifier of the member.
user_id string User account identifier.
email string Email address of the member.
first_name string First name of the member.
last_name string Last name of the member.
role string Role of the member within the workspace.
status string Membership status.
View JSON Schema on GitHub

JSON Schema

pandadoc-member-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Member",
  "title": "Member",
  "type": "object",
  "description": "A workspace member representing a PandaDoc user within a workspace.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the member."
    },
    "user_id": {
      "type": "string",
      "description": "User account identifier."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the member."
    },
    "first_name": {
      "type": "string",
      "description": "First name of the member."
    },
    "last_name": {
      "type": "string",
      "description": "Last name of the member."
    },
    "role": {
      "type": "string",
      "description": "Role of the member within the workspace.",
      "enum": [
        "admin",
        "manager",
        "user"
      ]
    },
    "status": {
      "type": "string",
      "description": "Membership status.",
      "enum": [
        "active",
        "inactive"
      ]
    }
  }
}