{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SiteUrlsRequest", "title": "SiteUrlsRequest", "type": "object", "required": [ "siteUrl", "accountType" ], "properties": { "siteUrl": { "type": "string", "example": "mysite.webex.com", "description": "Attendee access on the site." }, "accountType": { "type": "string", "enum": [ "attendee" ], "description": "Account type. Only `attendee` type is supported. For host account, remove attendee and assign the license on that site.\n * `attendee` - Attendee role on the siteUrl\n" }, "operation": { "type": "string", "enum": [ "remove", "add" ], "description": "Operation type. The default operation is `add` if no operation is specified.\n * `remove` - Remove the attendee role from the user.\n * `add` - Add the attendee role to the user.\n" } } }