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

# Update pending attendee

> Updates an existing pending attendee record with new information during form modification.



## OpenAPI

````yaml /openapi.json patch /v4/attendee/pending/{id}
openapi: 3.0.0
info:
  title: meetergo Platform API
  description: >-
    Comprehensive scheduling API for creating users, managing availability,
    handling bookings, and connecting calendar providers. Enables seamless
    integration with external platforms and applications.
  version: 0.0.0
  contact: {}
  termsOfService: https://www.meetergo.com/tos/
servers: []
security: []
tags:
  - name: User V4
    description: Create and manage users in your workspace
  - name: Meeting Type V4
    description: Configure meeting templates with durations, buffers, and conferencing
  - name: availability
    description: Manage weekly schedules and availability settings
  - name: Booking V4
    description: Create new bookings
  - name: Booking Availability V4
    description: Query available time slots for booking
  - name: Appointment V4
    description: Manage existing appointments
  - name: Attendee V4
    description: Manage attendee details and notes
  - name: Calendar Connections V4
    description: Connect and sync external calendars
  - name: One Time Booking Link V4
    description: Create single-use booking links
  - name: availability-exception
    description: Override availability for specific dates
  - name: Booking Link V4
    description: Configure various booking page types
  - name: Personal Page V4
    description: Manage user profile pages
  - name: Handoff V4
    description: Reassign meetings to other hosts
  - name: Calendar Auth V4
    description: OAuth callbacks for calendar providers
  - name: Queue V4
    description: Round-robin and queue-based routing (Beta)
  - name: Queue User Group V4
    description: Manage queue user groups (Beta)
  - name: Meeting Type Template V4
    description: Reusable meeting type configurations (Beta)
  - name: Attendee Pending V4
    description: Manage pending attendee approvals (Beta)
  - name: Provisional Booking V4
    description: Manage provisional/unconfirmed bookings (Beta)
paths:
  /v4/attendee/pending/{id}:
    patch:
      tags:
        - Attendee Pending V4
      summary: Update pending attendee
      description: >-
        Updates an existing pending attendee record with new information during
        form modification.
      operationId: updateInfo
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier of the pending attendee record
          schema:
            type: number
      requestBody:
        required: true
        description: Updated attendee information
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAttendeePendingDto'
      responses:
        '200':
          description: Pending attendee updated successfully
          content:
            application/json:
              schema:
                type: number
components:
  schemas:
    CreateAttendeePendingDto:
      type: object
      properties:
        email:
          type: string
          description: |-
            Attendee email address. Required for all standard bookings.
            Optional only when `BookingDto.phoneOnlyBooking` is true.
            Validated as email format when provided.
          format: email
        firstname:
          type: string
          description: Either fullname or firstname/lastname is required
        lastname:
          type: string
          description: Either fullname or firstname/lastname is required
        fullname:
          type: string
          description: Either fullname or firstname/lastname is required
        bringalongEmails:
          description: Additional attendee emails (max 5)
          maxItems: 5
          type: array
          items:
            type: string
            format: email
        notes:
          type: object
          description: An object containing attendee form entries.
          additionalProperties:
            type: string
        phone:
          type: string
        language:
          allOf:
            - $ref: '#/components/schemas/Language'
        timezone:
          type: string
        dataPolicyAccepted:
          type: boolean
        companyId:
          type: string
          format: uuid
      required:
        - notes
        - companyId
    Language:
      type: string
      enum:
        - en
        - de
        - fr
        - es
        - 'no'
        - nl
        - it
        - pl
        - sv
        - tr
        - da

````