> ## Documentation Index
> Fetch the complete documentation index at: https://docs.guile.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Appointment Confirmation In Progress

> The booking request is already being confirmed

## Cause

A confirmation workflow already owns this booking request. Customer cancellation, barber decline, and server expiry cannot win while its durable money outcome is reconciling.

## Fix

Refresh the appointment and poll while `bookingRequest.state` is `confirming`.

## Retry safety

Not retryable until the underlying state or request changes.

## Raised by

These operations can return this problem:

* [Cancel an appointment as a barber](/api-reference/appointments/cancel-an-appointment-as-a-barber)
* [Create an appointment cancellation](/api-reference/appointments/create-an-appointment-cancellation)
* [Cancel a specific appointment for me](/api-reference/customers/cancel-a-specific-appointment-for-me)

## Example

```json theme={null}
{
  "type": "https://docs.guile.app/problems/appointmentConfirmationInProgress",
  "title": "Appointment Confirmation In Progress",
  "status": 409,
  "detail": "A confirmation workflow already owns this booking request. Customer cancellation, barber decline, and server expiry c..."
}
```
