action just_eat_get_checkout_tenant_checkout_id_fulfilment_availabletimes { label: "Get Available Fulfilment Times" description: "Gets a collection of times for when an order can be fulfilled." provider: just_eat method: GET path: "/checkout/{tenant}/{checkoutId}/fulfilment/availabletimes" encoding: json input: { type: "object" properties: { "User-Agent": { type: "string" } checkoutId: { type: "string" } tenant: { type: "string" } } required: ["User-Agent", "checkoutId", "tenant"] additionalProperties: false } output: { type: "object" required: ["asapAvailable", "times"] properties: { asapAvailable: { type: "boolean" description: "If the option to fulfil an order as soon as possible is available." } times: { type: "array" description: "Collection of time bands for when an order can be fulfilled." items: { type: "object" description: "A time band for when an order can be fulfilled." required: ["from", "to"] properties: { from: { type: "string" format: "date-time" description: "Start time represented in ISO 8601 UTC (Zulu Time)." } to: { type: "string" format: "date-time" description: "End time represented in ISO 8601 UTC (Zulu Time).\n\nThis time can be equal to the from time.\n" } } } } } } }