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

# Get Payments by Wix dashboard link

> <Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Legacy integration for existing connections only. New installations are not supported. Returns a one-time link to the app's Wix payments dashboard. Requires write access to the app. Treat the returned link as a credential. The app must have a connected Wix site, but the link can still be available after the payment integration is disconnected.



## OpenAPI

````yaml /developers/references/app-management/app-management-openapi.json get /api/apps/{app_id}/payments/payments-by-wix/dashboard-url
openapi: 3.1.0
info:
  title: Base44 App Management API
  version: 1.0.0
servers:
  - url: https://app.base44.com
security:
  - ApiKeyAuth: []
paths:
  /api/apps/{app_id}/payments/payments-by-wix/dashboard-url:
    get:
      summary: Get Payments by Wix dashboard link
      description: >-
        <Info>This API is in beta. Endpoints, fields, and behavior may still
        change, so avoid depending on it in production.</Info>


        Legacy integration for existing connections only. New installations are
        not supported. Returns a one-time link to the app's Wix payments
        dashboard. Requires write access to the app. Treat the returned link as
        a credential. The app must have a connected Wix site, but the link can
        still be available after the payment integration is disconnected.
      operationId: >-
        get_dashboard_url_api_apps__app_id__payments_payments_by_wix_dashboard_url_get
      parameters:
        - name: app_id
          in: path
          required: true
          schema:
            type: string
            description: ID of the Base44 app.
            title: App Id
          description: ID of the Base44 app.
          example: 6820f3a4e7b91d003c45a1f2
        - name: redirect_url
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Optional redirect on the same origin as the request. Invalid
              destinations are ignored. A valid redirect takes precedence over
              other destination options.
            title: Redirect Url
          description: >-
            Optional redirect on the same origin as the request. Invalid
            destinations are ignored. A valid redirect takes precedence over
            other destination options.
          example: /apps
        - name: open_assistant
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              Whether to open the payment methods assistant when no
              higher-priority redirect is selected. Defaults to false.
            default: false
            title: Open Assistant
          description: >-
            Whether to open the payment methods assistant when no
            higher-priority redirect is selected. Defaults to false.
          example: false
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardUrlResponse'
        '401':
          description: Missing or invalid credentials.
        '403':
          description: >-
            The credential is not permitted or you don't have write access to
            the app. A missing app also fails the app access check.
        '404':
          description: >-
            The app has no connected Wix site, or it is outside the credential's
            granted workspace.
        '409':
          description: The workspace requires an unlocked SSO session.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DashboardUrlResponse:
      properties:
        redirect_url:
          type: string
          title: Redirect Url
          description: >-
            One-time Wix dashboard link. Treat it as a credential and open it in
            a browser.
          example: https://manage.wix.com/example-dashboard-link
      type: object
      required:
        - redirect_url
      title: DashboardUrlResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key
      description: Personal API key.

````