Qualtrics · Schema

SubscribeToEventBody

Experience ManagementSurveysCustomer ExperienceEmployee ExperienceMarket ResearchXMREST API

Properties

Name Type Description
topics string The topics to subscribe to. Must follow the format surveyengine.completedResponse.[SurveyID]
publicationUrl string The internal publication URL - will be generated by PowerAutomate
encrypt boolean
View JSON Schema on GitHub

JSON Schema

subscribetoeventbody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.qualtrics.com/schemas/SubscribeToEventBody.json",
  "title": "SubscribeToEventBody",
  "type": "object",
  "properties": {
    "topics": {
      "type": "string",
      "description": "The topics to subscribe to. Must follow the format surveyengine.completedResponse.[SurveyID]",
      "default": "surveyengine.completedResponse.<Insert SurveyID>"
    },
    "publicationUrl": {
      "type": "string",
      "description": "The internal publication URL - will be generated by PowerAutomate",
      "x-ms-notification-url": true,
      "x-ms-visibility": "internal"
    },
    "encrypt": {
      "type": "boolean"
    }
  },
  "required": [
    "topics",
    "publicationUrl"
  ]
}