Backupify · Schema

BulkSeatChangeRequest

Request to change multiple seat licenses

SaaS BackupData ProtectionCloud BackupMicrosoft-365Google Workspace

Properties

Name Type Description
seats array List of seat changes (max 100 per request)
View JSON Schema on GitHub

JSON Schema

saas-protection-api-bulk-seat-change-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/backupify/refs/heads/main/json-schema/saas-protection-api-bulk-seat-change-request-schema.json",
  "title": "BulkSeatChangeRequest",
  "description": "Request to change multiple seat licenses",
  "type": "object",
  "properties": {
    "seats": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SeatChange"
      },
      "description": "List of seat changes (max 100 per request)"
    }
  }
}