action qualtrics_get_event_subscriptions { label: "Get event subscriptions" description: "Get event subscriptions" provider: qualtrics method: GET path: "/eventsubscriptions/{SubscriptionId}" encoding: json input: { type: "object" properties: { SubscriptionId: { type: "string" } } required: ["SubscriptionId"] additionalProperties: false } output: { type: "object" properties: { meta: { type: "object" properties: { httpStatus: { type: "string" } requestId: { type: "string" } } } result: { type: "object" properties: { meta: { type: "object" properties: { httpStatus: { type: "string" } } } result: { type: "object" properties: { id: { type: "string" } } } } } } } }