action just_eat_get_consumers_tenant_me_communication_preferences { label: "Get communication preferences" description: "Get all communication preferences for a given consumer." provider: just_eat method: GET path: "/consumers/{tenant}/me/communication-preferences" encoding: json input: { type: "object" properties: { tenant: { type: "string" } } required: ["tenant"] additionalProperties: false } output: { type: "object" properties: { marketing: { type: "object" properties: { isDefault: { type: "boolean" description: "Are these channel subscriptions the default or have they been set elsewhere. This is a read-only derived field." } subscribedChannels: { type: "array" description: "The list of channels that are subscribed" items: { type: "string" enum: ["email", "sms", "push"] } } } } } } }