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

# Cancel quick link by token



## OpenAPI

````yaml api-reference/features/integrate.json POST /quicklink/{token}/cancel
openapi: 3.0.3
info:
  title: Integrate API methods
  version: 1.0.0
  description: Task-focused integrate methods across supported Polymorfa connection types.
servers: []
security: []
paths:
  /quicklink/{token}/cancel:
    post:
      tags:
        - Quicklink
      summary: Cancel quick link by token
      operationId: nativeCancelQuickLinkByToken
      parameters:
        - schema:
            type: string
            description: Opaque QuickLink token from the hosted URL.
          required: true
          name: token
          in: path
          description: Opaque token required by the target operation.
      responses:
        '200':
          description: Cancelled
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - cancelled
                        description: |-
                          Current status of this resource or operation.

                          <!-- polymorfa-input-table -->
                          **Allowed values**
                          | Value | Meaning |
                          | --- | --- |
                          | `cancelled` | Cancelled. |
                      redirectUrl:
                        type: string
                        nullable: true
                        description: |-
                          URL for the redirect.

                          <!-- polymorfa-input-table -->
                          **Accepted alternatives**
                          | Alternative | Accepted input |
                          | --- | --- |
                          | Alternative 1 | Type: `string` |
                          | Alternative 2 | `null` |
                    required:
                      - status
                      - redirectUrl
                    description: Structured data carried by this object.
                required:
                  - data
        '400':
          description: Bad request — request body or params failed validation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/native__ErrorResponse'
        '401':
          description: Missing or invalid authentication token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/native__ErrorResponse'
        '403':
          description: Authenticated but not permitted (missing scope or rule violation)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/native__ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/native__ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/native__ErrorResponse'
      security: []
      servers:
        - url: https://api.polymorfa.com
components:
  schemas:
    native__ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
        docs:
          type: string
          description: URL to the documentation for this error
      required:
        - error

````