Webex · Example Payload

Webex Updatemeetingregistration Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Updatemeetingregistration Example is an example object payload from Webex, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "updateMeetingRegistration",
  "method": "PUT",
  "path": "/meetings/{meetingId}/registration",
  "summary": "Update Meeting Registration Form",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "hostEmail": "john.andersen@example.com",
        "requireFirstName": true,
        "requireLastName": true,
        "requireEmail": true,
        "requireCompanyName": true,
        "requireCountryRegion": true,
        "requireWorkPhone": true,
        "enabledRegistrationId": false,
        "customizedQuestions": [
          {
            "question": "What color do you like?",
            "required": true,
            "type": "checkbox",
            "options": [
              {
                "value": "green"
              },
              {
                "value": "black"
              },
              {
                "value": "yellow"
              },
              {
                "value": "red"
              }
            ],
            "rules": [
              {
                "condition": "notEquals",
                "value": "red",
                "result": "reject",
                "matchCase": true
              }
            ]
          },
          {
            "question": "Project Team",
            "type": "singleLineTextBox",
            "maxLength": 120
          },
          {
            "question": "How are you",
            "type": "multiLineTextBox"
          },
          {
            "question": "DropDownList Q",
            "type": "dropdownList",
            "options": [
              {
                "value": "A1"
              },
              {
                "value": "A2"
              }
            ]
          },
          {
            "question": "weather",
            "required": false,
            "type": "radioButtons",
            "maxLength": 120,
            "options": [
              {
                "value": "sunny"
              },
              {
                "value": "rain"
              }
            ]
          }
        ],
        "rules": [
          {
            "question": "lastName",
            "condition": "endsWith",
            "value": "tom",
            "result": "reject",
            "matchCase": false,
            "order": 1
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "autoAcceptRequest": false,
        "requireFirstName": true,
        "requireLastName": true,
        "requireEmail": true,
        "requireJobTitle": false,
        "requireCompanyName": true,
        "requireAddress1": false,
        "requireAddress2": false,
        "requireCity": false,
        "requireState": false,
        "requireZipCode": false,
        "requireCountryRegion": true,
        "requireWorkPhone": true,
        "requireFax": false,
        "enabledRegistrationId": false,
        "customizedQuestions": [
          {
            "id": "3386787",
            "question": "What color do you like?",
            "required": true,
            "type": "checkbox",
            "options": [
              {
                "id": "1",
                "value": "green"
              },
              {
                "id": "2",
                "value": "black"
              },
              {
                "id": "3",
                "value": "yellow"
              },
              {
                "id": "4",
                "value": "red"
              }
            ],
            "rules": [
              {
                "condition": "notEquals",
                "value": "red",
                "result": "reject",
                "matchCase": true,
                "order": 1
              }
            ]
          },
          {
            "id": "3386792",
            "question": "Project Team",
            "required": false,
            "type": "singleLineTextBox",
            "maxLength": 120
          },
          {
            "id": "3386797",
            "question": "How are you",
            "required": false,
            "type": "multiLineTextBox",
            "maxLength": 999
          },
          {
            "id": "3386802",
            "question": "DropDownList Q",
            "required": false,
            "type": "dropdownList",
            "options": [
              {
                "id": "1",
                "value": "A1"
              },
              {
                "id": "2",
                "value": "A2"
              }
            ]
          },
          {
            "id": "3386891",
            "question": "weather",
            "required": false,
            "type": "radioButtons",
            "maxLength": 120,
            "options": [
              {
                "id": "1",
                "value": "sunny"
              },
              {
                "id": "2",
                "value": "rain"
              }
            ]
          }
        ],
        "rules": [
          {
            "question": "lastName",
            "condition": "endsWith",
            "value": "tom",
            "result": "reject",
            "matchCase": false,
            "order": 1
          }
        ]
      }
    }
  ]
}