> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/orders/llms.txt)
> Source: https://docs.saleor.io/api-reference/orders/objects/fulfillment-approve

# FulfillmentApprove Object

Approve existing fulfillment.

Requires the MANAGE\_ORDERS permission.

Triggers the following webhook events:

-   FULFILLMENT\_APPROVED (async): Fulfillment is approved.

```graphql
type FulfillmentApprove {
  fulfillment: Fulfillment
  order: Order
  orderErrors: [OrderError!]! @deprecated
  errors: [OrderError!]!
}
```

<a id="fields"></a>

### Fields

<a id="fulfillment"></a>

#### [`fulfillment`](#fulfillment) ● [`Fulfillment`](/api-reference/orders/objects/fulfillment.md)

An approved fulfillment.

<a id="order"></a>

#### [`order`](#order) ● [`Order`](/api-reference/orders/objects/order.md)

Order which fulfillment was approved.

<a id="errors"></a>

#### [`errors`](#errors) ● [`[OrderError!]!`](/api-reference/orders/objects/order-error.md)

Show deprecatedHide deprecated

<a id="order-errors"></a>

#### [`orderErrors`](#order-errors) ● [`[OrderError!]!`](/api-reference/orders/objects/order-error.md)

DEPRECATED

Use `errors` field instead.

<a id="returned-by"></a>

### Returned By

[`orderFulfillmentApprove`](/api-reference/orders/mutations/order-fulfillment-approve.md) mutation
