> ## 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.

# No-Show Grace Period Active

> The appointment is still inside its no-show grace period

## Cause

A no-show cancellation cannot be recorded until the grace period after the
appointment start has elapsed.

## Fix

Wait until the `recordableAt` date-time in the problem attributes, then
[create an appointment cancellation](/api-reference/appointments/create-an-appointment-cancellation)
again.

## Retry safety

Not retryable

## Raised by

These operations can return this problem:

* [Create an appointment cancellation](/api-reference/appointments/create-an-appointment-cancellation)

## Example

```json theme={null}
{
  "type": "https://docs.guile.app/problems/noShowGracePeriodActive",
  "title": "No-Show Grace Period Active",
  "status": 409,
  "detail": "A no-show cancellation cannot be recorded until the grace period after the appointment start has elapsed.",
  "attributes": {
    "recordableAt": "2024-12-01T18:15:00Z"
  }
}
```
