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

# Create one-time scheduling link

> Create a one-time 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/meetings.yaml POST /meetings/{meeting_sid}/create_one_off_link
openapi: 3.0.3
info:
  title: NeetoCal Meetings 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: Scheduling links
    description: APIs to create and manage scheduling links.
paths:
  /meetings/{meeting_sid}/create_one_off_link:
    post:
      tags:
        - Scheduling links
      summary: Create a one-time scheduling link
      description: Create a one-time scheduling link.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - in: path
          name: meeting_sid
          description: >
            You need to pass the `sid` of the scheduling link to get one-time
            scheduling link. You can get `sid` in different ways. Visit the
            scheduling link page and then click on "Settings" > "Show SID". That
            will give you `sid`. The other way you can get `sid` is by listing
            scheduling links using our [List scheduling
            links](/api-reference/scheduling-links/list) API. Here you will see
            `sid` for each scheduling link.
          required: true
          schema:
            type: string
          example: vj5pgkh
      responses:
        '200':
          description: OK - Request succeeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  slug:
                    type: string
                  url:
                    type: string
              example:
                slug: one-off-c5530bc7c9ab
                url: https://spinkart.neetocal.com/one-off-c5530bc7c9ab
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

````