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

# Resolve Wix Payments onboarding name

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

Returns the authenticated caller's first and last name for onboarding. Tries the saved profile first, then the caller's personal workspace billing customer. A failed billing lookup is treated as an unresolved name. This operation does not save the resolved name.



## OpenAPI

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


        Returns the authenticated caller's first and last name for onboarding.
        Tries the saved profile first, then the caller's personal workspace
        billing customer. A failed billing lookup is treated as an unresolved
        name. This operation does not save the resolved name.
      operationId: resolve_name_endpoint_api_payments_wix_resolve_name_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResolveNameResponse'
        '401':
          description: Missing or invalid credentials.
        '403':
          description: The credential is not permitted on this route.
        '409':
          description: The workspace requires an unlocked SSO session.
components:
  schemas:
    ResolveNameResponse:
      properties:
        needs_full_name:
          type: boolean
          title: Needs Full Name
          description: Whether onboarding still needs a first and last name.
          example: false
        first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: First Name
          description: >-
            Resolved first name, or `null` when a complete name could not be
            found. Defaults to `null`.
          example: Jane
        last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Name
          description: >-
            Resolved last name, or `null` when a complete name could not be
            found. Defaults to `null`.
          example: Doe
      type: object
      required:
        - needs_full_name
      title: ResolveNameResponse
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key
      description: Personal API key.

````