PandaDoc · Schema

WorkspaceListResponse

Paginated list of workspaces.

Document AutomationE-SignatureDocument ManagementDocument GenerationWebhooks

Properties

Name Type Description
results array Array of workspace records.
total integer Total number of workspaces matching the query.
View JSON Schema on GitHub

JSON Schema

pandadoc-workspacelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkspaceListResponse",
  "title": "WorkspaceListResponse",
  "type": "object",
  "description": "Paginated list of workspaces.",
  "properties": {
    "results": {
      "type": "array",
      "description": "Array of workspace records.",
      "items": {
        "$ref": "#/components/schemas/Workspace"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of workspaces matching the query."
    }
  }
}