@itentialopensource/adapter-zoom
Version:
This adapter integrates with system described as: zoom.
81 lines • 2.06 kB
JSON
{
"$id": "schema.json",
"type": "object",
"schema": "http://json-schema.org/draft-07/schema#",
"translate": true,
"dynamicfields": true,
"properties": {
"ph_request_type": {
"type": "string",
"description": "type of request (internal to adapter)",
"default": "webinars",
"enum": [
"webinars",
"webinarCreate",
"webinar",
"webinarUpdate",
"webinarDelete",
"webinarStatus",
"webinarPanelists",
"webinarPanelistCreate",
"webinarPanelistsDelete",
"webinarPanelistDelete",
"webinarRegistrants",
"webinarRegistrantCreate",
"webinarRegistrantStatus",
"pastWebinars",
"webinarPolls",
"webinarPollCreate",
"webinarPollGet",
"webinarPollUpdate",
"webinarPollDelete"
],
"external_name": "ph_request_type"
},
"pageSize": {
"type": "number",
"description": "The number of records returned within a single API call",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "page_size"
},
"pageNumber": {
"type": "number",
"description": "Current page number of returned records",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "page_number"
},
"occurrenceId": {
"type": "string",
"description": "The meeting occurrence ID",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "occurrence_id"
},
"occurrenceIds": {
"type": "string",
"description": "Occurrence IDs, could get this value from Webinar Get API. Multiple value separated by comma.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "occurrence_ids"
}
},
"definitions": {}
}