action just_eat_get_restaurants_tenant_restaurant_id_fees { label: "Get Restaurant Fees" description: "Get the fees currently applied to a restaurant in a particular tenant" provider: just_eat method: GET path: "/restaurants/{tenant}/{restaurantId}/fees" encoding: json input: { type: "object" properties: { "User-Agent": { type: "string" } restaurantId: { type: "string" } tenant: { type: "string" } } required: ["restaurantId", "tenant"] additionalProperties: false } output: { type: "object" description: "An object encapsulating all possible fees which a restaurant can apply to itself" properties: { bagFee: { type: "object" description: "The object which encapsulates a Fee" properties: { description: { type: "string" description: "A description of what the Fee is" } serviceTypes: { type: "object" description: "Contains Service type specific fee values. If set, default can be used to apply a fee to as yet unspecified service types" properties: { collection: { type: "object" description: "Distinct values which are configured for a particular service type" properties: { amount: { type: "number" format: "integer" description: "The value to apply to the basket for this Fee in the smallest unit of currency" } } } default: { type: "object" additionalProperties: true } delivery: { type: "object" additionalProperties: true } } } } } } } }