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

# Create a hosted Svix App Portal link for the caller's org

> Mint a short-lived hosted App Portal link for the authenticated org.

Capabilities follow the caller: ``webhooks:manage`` grants the manage set, any
other caller (read-only role or a scope-narrowed API key) gets ``ViewBase``
only. Customers choose endpoint enablement and event subscriptions inside Svix.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/webhooks/portal
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/webhooks/portal:
    post:
      tags:
        - webhooks
      summary: Create a hosted Svix App Portal link for the caller's org
      description: >-
        Mint a short-lived hosted App Portal link for the authenticated org.


        Capabilities follow the caller: ``webhooks:manage`` grants the manage
        set, any

        other caller (read-only role or a scope-narrowed API key) gets
        ``ViewBase``

        only. Customers choose endpoint enablement and event subscriptions
        inside Svix.
      operationId: createWebhookPortalLink
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PortalLinkResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    PortalLinkResponse:
      properties:
        url:
          type: string
          title: Url
          description: Short-lived Svix-hosted App Portal URL.
        expires_in_s:
          type: integer
          title: Expires In S
          description: Seconds until the link/token expires.
        read_only:
          type: boolean
          title: Read Only
          description: >-
            True when the token is read-only (ViewBase); False grants manage
            caps.
      type: object
      required:
        - url
        - expires_in_s
        - read_only
      title: PortalLinkResponse
      description: >-
        A short-lived Svix-hosted App Portal link.


        ``url`` carries a scoped, expiring portal token — safe to hand to a
        browser.

        The account-level Svix API key is never included.
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````