action contribly_get_subscriptions { label: "List subscriptions for the authorised user." provider: contribly method: GET path: "/subscriptions" encoding: json input: { type: "object" required: ["includeBody", "includeThumbnail", "types"] properties: { assignment: { type: "string" } email: { type: "string" } includeBody: { type: "boolean" } includeThumbenail: { type: "boolean" } slackChannel: { type: "string" } types: { type: "array" items: { type: "string" } } } } output: { type: "array" items: { type: "object" required: ["id", "token", "user", "types", "includeBody", "includeThumbnail"] properties: { assignment: { type: "string" } email: { type: "string" } id: { type: "string" } includeBody: { type: "boolean" } includeThumbenail: { type: "boolean" } slackChannel: { type: "string" } token: { type: "string" } types: { type: "array" items: { type: "string" } } user: { type: "string" } } } } }