action qualtrics_retrievedistributionlinks { label: "Retrieve distribution links" description: "Retrieves all the individual links for a given distribution" provider: qualtrics method: GET path: "/distributions/{DistributionId}/links" encoding: json input: { type: "object" properties: { DistributionId: { type: "string" } surveyId: { type: "string" } } required: ["DistributionId", "surveyId"] additionalProperties: false } output: { type: "object" properties: { meta: { type: "object" properties: { httpStatus: { type: "string" } requestId: { type: "string" } } } result: { type: "object" properties: { elements: { type: "array" items: { type: "object" required: ["contactId", "transactionId", "link", "exceededContactFrequency", "linkExpiration", "status", "lastName", "firstName", "externalDataReference", "email", "unsubscribed"] properties: { contactId: { type: "string" } email: { type: "string" } exceededContactFrequency: { type: "boolean" } externalDataReference: { type: "object" } firstName: { type: "string" } lastName: { type: "string" } link: { type: "string" } linkExpiration: { type: "string" } status: { type: "string" } transactionId: { type: "object" } unsubscribed: { type: "boolean" } } } } nextPage: { type: "object" } } } } } }