action just_eat_get_consumers_tenant { label: "Get consumers details" description: "Currently this operation only supports retrieving a count of consumer accounts given an email address." provider: just_eat method: GET path: "/consumers/{tenant}" encoding: json input: { type: "object" properties: { accountType: { type: "string" enum: ["registered"] } count: { type: "string" } emailAddress: { type: "string" } tenant: { type: "string" } } required: ["accountType", "count", "emailAddress", "tenant"] additionalProperties: false } output: { type: "object" additionalProperties: true } }