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

# Update meeting place

> Update a meeting place for a scheduling link.

<Warning>This endpoint is part of API v1, which is deprecated. Please use the [v2 API](/getting-started/introduction) instead.</Warning>

<Info>Replace `{your-subdomain}` with your workspace’s subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml bundled-v1/spots.yaml PUT /meetings/{meeting_sid}/spots/{id}
openapi: 3.0.3
info:
  title: NeetoCal Meeting Places APIs
  version: 1.0.0
servers:
  - description: NeetoCal APIs
    url: https://{your-subdomain}.neetocal.com/api/external/v1
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Meeting Spots
    description: >-
      APIs to manage meeting locations and platforms (spots) for scheduling
      links.
paths:
  /meetings/{meeting_sid}/spots/{id}:
    put:
      tags:
        - Meeting Spots
      summary: Update a spot
      description: Update a meeting place for a scheduling link.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - in: path
          name: meeting_sid
          description: >
            The unique identifier (SID) of the scheduling link you want to use.
            You can get `sid` in different ways. Visit the scheduling link page
            and then click on "Settings" > "Show SID". That will give you `sid`.
            You can also get this from the response of the [List scheduling
            links](/api-reference/scheduling-links/list) endpoint, where it
            appears as the `sid` property for each scheduling link in the
            response.
          required: true
          schema:
            type: string
            example: vj5pgkh
        - in: path
          name: id
          description: >
            The unique identifier of the place. You can get this `id` from the
            response of the [List meeting
            places](/api-reference/meeting-places/list) endpoint, where it
            appears as the `id` property for each place in the response.
          required: true
          schema:
            type: string
            example: 1d35e633-71b9-4ad9-b659-b034f361539b
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/spot_update_request'
      responses:
        '200':
          description: OK - Request succeeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Spot updated successfully
                  spot:
                    $ref: '#/components/schemas/spot'
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        Use the X-Api-Key header to provide your workspace API key. Refer to
        [Authentication](/getting-started/authentication) for more information.
      required: true
      schema:
        type: string
  schemas:
    spot_update_request:
      type: object
      properties:
        spot:
          type: string
          enum:
            - daily
            - zoom
            - jitsi
            - google_meet
            - teams
            - whereby
            - in_person
            - custom
            - phone_call
          description: The new place type (must be one of the predefined values).
          example: custom
        spot_phone_call_number:
          type: string
          nullable: true
          description: >-
            Phone number for phone call meeting place. Only required when place
            type is "phone_call".
          example: null
        spot_custom_text:
          type: string
          nullable: true
          description: >-
            Custom text for custom meeting place. Only required when place type
            is "custom".
          example: Custom meeting instructions
        spot_in_person_location:
          type: string
          nullable: true
          description: >-
            Location details for in-person meetings. Only required when place
            type is "in_person".
          example: null
        is_default:
          type: boolean
          description: Whether this place should be the default option.
          example: true
    spot:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the place.
          example: 1d35e633-71b9-4ad9-b659-b034f361539b
        spot:
          type: string
          enum:
            - daily
            - zoom
            - jitsi
            - google_meet
            - teams
            - whereby
            - in_person
            - custom
            - phone_call
          description: The place type for the meeting.
          example: in_person
        spot_phone_call_number:
          type: string
          nullable: true
          description: >-
            Phone number for phone call meeting place. Only populated when place
            type is "phone_call", otherwise null.
          example: null
        spot_custom_text:
          type: string
          nullable: true
          description: >-
            Custom text for custom meeting place. Only populated when place type
            is "custom", otherwise null.
          example: null
        spot_in_person_location:
          type: string
          nullable: true
          description: >-
            Location details for in-person meetings. Only populated when place
            type is "in_person", otherwise null.
          example: 123 Main St, Suite 100, City, State 12345
        is_default:
          type: boolean
          description: Whether this meeting place is the default option.
          example: true
        created_at:
          type: string
          format: date-time
          description: Timestamp when the meeting place was created.
          example: '2025-01-15T10:30:00Z'
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the meeting place was last updated.
          example: '2025-01-15T10:30:00Z'

````