Mindbody · Schema

UpdateStaffPermissionsRequest

Implementation of the 'UpdateStaffPermissionsRequest' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
StaffId integer The ID of the staff member whose permission you want to change. Staff member must have a login.
PermissionGroupName string The name of the permission group.
View JSON Schema on GitHub

JSON Schema

public-api-v6-update-staff-permissions-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-schema/public-api-v6-update-staff-permissions-request-schema.json",
  "title": "UpdateStaffPermissionsRequest",
  "description": "Implementation of the 'UpdateStaffPermissionsRequest' model.",
  "type": "object",
  "properties": {
    "StaffId": {
      "type": "integer",
      "format": "int32",
      "description": "The ID of the staff member whose permission you want to change. Staff member must have a login.",
      "example": 123456
    },
    "PermissionGroupName": {
      "type": "string",
      "description": "The name of the permission group.",
      "example": "example-value"
    }
  }
}