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

# Get bookings for guest reschedule

> Returns the bookings in a cart that are eligible for guest rescheduling.



## OpenAPI

````yaml get /v1/brands/{brandId}/carts/{cartId}/guest-reschedule
openapi: 3.0.0
info:
  title: Way Partner API
  description: >-
    REST API for Way partners: list experiences, check availability, run
    checkout, and manage bookings.
  version: '1.0'
servers:
  - url: https://api.letsway.com
    description: Production.
  - url: https://api.staging.letsway.com
    description: Staging.
security: []
tags:
  - name: Listings
    description: 'Retrieve the listings a brand offers: experiences, events, and resources.'
  - name: Availability
    description: Dates, sessions, and price tiers for scheduling a booking.
  - name: Carts & Checkout
    description: >-
      Payment intents and booking creation. The cart ID is a client-generated
      UUID; there is no create-cart endpoint.
  - name: Bookings
    description: Retrieve, cancel, and reschedule bookings.
  - name: Experiences
    description: Experience details, settings, custom questions, reviews, and hosts.
  - name: Brand Configuration
    description: Brand settings, taxonomy, terms, and promotion code validation.
  - name: Waitlists
    description: Waitlists for sold-out sessions and invitation handling.
  - name: Integrations
    description: Configured integrations, analytics, and room-charge validation.
  - name: Organizations
    description: Organization-level access across brands.
paths:
  /v1/brands/{brandId}/carts/{cartId}/guest-reschedule:
    get:
      tags:
        - Bookings
      summary: Get bookings for guest reschedule
      description: Returns the bookings in a cart that are eligible for guest rescheduling.
      operationId: BookingPublicController_getBookingsForGuestReschedule
      parameters:
        - $ref: '#/components/parameters/brandIdPath_41'
        - $ref: '#/components/parameters/cartIdPath_42'
        - $ref: '#/components/parameters/languageCodeQuery'
        - $ref: '#/components/parameters/tokenQuery'
      responses:
        '200':
          description: Get bookings for guest reschedule.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBookingsForGuestRescheduleResponse'
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    brandIdPath_41:
      name: brandId
      in: path
      schema:
        type: string
      required: true
      description: >-
        The brand's ID - must match the brand your API key identifies (or the
        Way-Brand-Id header when one is sent).
    cartIdPath_42:
      name: cartId
      in: path
      schema:
        type: string
      required: true
      description: Only bookings created from this cart.
      example: c4a1b2c3-d4e5-4f6a-8b9c-0d1e2f3a4b5c
    languageCodeQuery:
      name: languageCode
      in: query
      schema:
        type: string
      description: Locale for translated content; defaults to the brand's language.
      required: false
    tokenQuery:
      name: token
      in: query
      schema:
        type: string
        minLength: 1
      description: The guest's access token, from the link in their confirmation email.
      required: false
  schemas:
    GetBookingsForGuestRescheduleResponse:
      type: array
      items:
        type: object
        properties:
          bookingId:
            type: string
            format: uuid
          coverMedia: {}
          customerId:
            type: string
            format: uuid
          experienceTitle:
            type: string
            nullable: true
          eventStartDateTime:
            type: string
            format: date-time
          eventSessionDuration: {}
          eventSessionDurationInMinutes:
            type: number
          experienceTimeZoneId:
            type: string
            nullable: true
          experienceMediaIds:
            type: array
            items:
              type: string
              format: uuid
          reschedulePolicyId:
            type: string
            format: uuid
            nullable: true
          reschedulePolicyNotes:
            type: string
            nullable: true
          reschedulePolicyActive:
            type: boolean
            nullable: true
          reschedulePolicyCutoffUnit:
            type: string
            enum:
              - hours
              - days
              - weeks
            nullable: true
          reschedulePolicyCutoffValue:
            type: number
            nullable: true
          status:
            type: string
            enum:
              - ALLOWED
              - NOT_ALLOWED
        required:
          - bookingId
          - customerId
          - experienceTitle
          - eventStartDateTime
          - eventSessionDurationInMinutes
          - experienceTimeZoneId
          - experienceMediaIds
          - reschedulePolicyId
          - reschedulePolicyNotes
          - reschedulePolicyActive
          - reschedulePolicyCutoffUnit
          - reschedulePolicyCutoffValue
          - status
      description: List the bookings associated to a cart id for guest cancellation.
  securitySchemes:
    Brand-API-Key:
      type: http
      scheme: bearer
      description: >-
        Your brand's secret API key, e.g. `Bearer
        way_sk_live_bhEqcn0i1fRoUEHBPjJkQA`. Older `Way-Brand-Id` +
        `Way-Secret-Key` credentials still work: see [Legacy
        authentication](/legacy-authentication).
    Organization-API-Key:
      type: http
      scheme: bearer
      description: >-
        Your organization's secret API key, e.g. `Bearer
        way_sk_live_ohEqcn0i1fRoUEHBPjJkQA`. Older `Way-Organization-Id` +
        `Way-Secret-Key` credentials still work: see [Legacy
        authentication](/legacy-authentication).

````