Just Eat
Just Eat is an online food ordering and delivery marketplace that connects customers with restaurants and takeaways.
- Base URL:
https://uk.api.just-eat.io - Auth:
header:Authorization(pass your key via theapiKeyinput)
Operations
get_checkout_tenant_checkoutid— GET /checkout/{tenant}/{checkoutId} — Get Checkoutget_checkout_tenant_checkoutid_fulfilment_availa— GET /checkout/{tenant}/{checkoutId}/fulfilment/availabletimes — Get Available Fulfilment Timesget_consumers_tenant— GET /consumers/{tenant} — Get consumers detailsget_consumers_tenant_me_communication_preference— GET /consumers/{tenant}/me/communication-preferences — Get communication preferencesget_delivery_fees_tenant— GET /delivery-fees/{tenant} — Get restaurant delivery feesget_delivery_pools— GET /delivery/pools — Get your delivery pools
Inputs
apiKey— your just-eat API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_checkout_tenant_checkoutid
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: get_checkout_tenant_checkoutid, get_checkout_tenant_checkoutid_fulfilment_availa, get_consumers_tenant, get_consumers_tenant_me_communication_preference, get_delivery_fees_tenant, get_delivery_pools |
checkoutId |
string | no | — | Path parameter checkoutId (required by some operations). |
tenant |
string | no | — | Path parameter tenant (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |