---
title: "Acceptance requested"
method: POST
path: "/acceptance-requested"
tags: ["Order Acceptance Webhooks", "publicly-accessible"]
---

# Acceptance requested

`POST /acceptance-requested`

This webhook will be invoked whenever acceptance has been requested for the order.

## Request body

- AcceptanceRequested
  - `OrderId` string
  - `FriendlyOrderReference` string
  - `Currency` string
  - `TotalPrice` number
  - `Fulfilment` object
    - `Method` 'Delivery' | 'Collection'
    - `PhoneNumber` string — Customer phone number (will be phone masking number if enabled)
    - `PhoneMaskingCode` string — Code to use when calling customer phone masking number about this order. null if phone masking not enabled
    - `CustomerDueDate` string, date-time
    - `CustomerDueAsap` boolean
    - `PreparationTime` string, timespan
    - `Address` OrderAddress
      - `Lines` string[]
      - `City` string
      - `PostalCode` string
      - `Geolocation` object
        - `Latitude` number, double
        - `Longitude` number, double
  - `Payment` object
    - `Lines` object[]
      - `Type` string
      - `Value` number
      - `Paid` boolean
  - `Customer` object
    - `Id` number, nullable
    - `Name` string
    - `PreviousRestaurantOrderCount` number — The customer's previous total number of orders made to this restaurant
    - `PreviousTotalOrderCount` number — The customer's previous total number of orders made to all restaurants
  - `Restrictions` OrderItemRestriction[] — This is a list of types of restricted items contained in the order.
    - `Type` 'Alcohol' — The type of restricted item contained in the order. The only supported value is 'Alcohol'.
  - `Items` object[]
    - `Reference` string
    - `Name` string
    - `Quantity` number
    - `UnitPrice` number
    - `TotalPrice` number
    - `Items` OrderItem — recursive
  - `PriceBreakdown` object
    - `Discount` number, nullable
    - `Tips` number, nullable
    - `Taxes` number, nullable
    - `Items` number, nullable
    - `Fees` object
      - `Delivery` number, nullable
      - `ServiceCharge` number, nullable
      - `Other` number, nullable
  - `PlacedDate` string, date-time
  - `CustomerNotes` object
  - `Restaurant` object
    - `Id` string — Restaurant Id
    - `Reference` string
    - `Name` string
    - `Address` OrderAddress
      - `Lines` string[]
      - `City` string
      - `PostalCode` string
      - `Geolocation` object
        - `Latitude` number, double
        - `Longitude` number, double
    - `TimeZone` string
    - `PhoneNumber` string
  - `IsTest` boolean

## Response `200`

Respond with a 200 status code to indicate that you have received the notification.

---

[API](https://skmtc.net/just-eat/apis/just-eat-api.md) · [All operations](https://skmtc.net/just-eat/apis/just-eat-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/just-eat/just-eat-api/versions/4b25c7d97a53/schema)
