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

# Get referral activation permission

> Returns the trader onboarder, risk authority, and permission account needed to build a referral activation transaction.



## OpenAPI

````yaml /openapi/phoenix-public-api.json get /v1/referral/activation-permission
openapi: 3.1.0
info:
  title: Phoenix Eternal API
  description: >-
    RESTful API for accessing Phoenix Eternal perpetual trading data. Provides
    real-time orderbook levels, asset information, and market metadata.
  termsOfService: https://www.phoenix.trade/terms-of-service
  contact:
    name: Phoenix Development Team
    url: https://github.com/Ellipsis-Labs/phoenix
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://perp-api.phoenix.trade
    description: Phoenix Eternal Perp API
security: []
tags:
  - name: Auth
    description: Wallet and session authentication.
  - name: Exchange
    description: Exchange, market, candle, and no-referral register-instruction workflows.
  - name: Invite
    description: Invite validation, referral activation, and wallet allowlist checks.
  - name: Notifications
    description: Trader notification reads and acknowledgement helpers.
  - name: Trader
    description: Trader state, account history, and transaction builders.
externalDocs:
  url: https://docs.phoenix.trade
  description: Phoenix developer documentation
paths:
  /v1/referral/activation-permission:
    get:
      tags:
        - Invite
      summary: Get referral activation permission
      description: >-
        Returns the trader onboarder, risk authority, and permission account
        needed to build a referral activation transaction.
      operationId: get.v1.referral.activation_permission
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReferralActivationPermissionResponse'
components:
  schemas:
    ReferralActivationPermissionResponse:
      type: object
      required:
        - trader_onboarder
        - risk_authority
        - permission_account
      properties:
        permission_account:
          type: string
        risk_authority:
          type: string
        trader_onboarder:
          type: string

````