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

# Get Onboarding Token

> Retrieves the onboarding token details and status for a user.




## OpenAPI

````yaml get /onboarding/token/{publicIdentifier}
openapi: 3.0.3
info:
  title: Everday Onboarding API
  version: 1.0.0
  description: >
    ## Onboarding API

    This API allows organisations to create, retrieve, and revoke onboarding
    tokens. Authentication is required for all endpoints using an API key.
servers:
  - url: https://api.ever.day
security: []
paths:
  /onboarding/token/{publicIdentifier}:
    get:
      summary: Get Onboarding Token
      description: |
        Retrieves the onboarding token details and status for a user.
      parameters:
        - name: publicIdentifier
          in: path
          required: true
          schema:
            type: string
          description: The unique public identifier of the user.
      responses:
        '200':
          description: Onboarding token retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OnboardingResponse'
        '401':
          description: Unauthorized. API key is missing or invalid.
        '404':
          description: User not found.
        '500':
          description: Internal server error.
      security:
        - apiKeyAuth: []
components:
  schemas:
    OnboardingResponse:
      type: object
      properties:
        signature:
          type: string
          description: A unique signature used for verifying the onboarding link.
          example: a1b2c3d4...
        status:
          type: string
          enum:
            - pending
            - completed
            - revoked
          description: The status of the onboarding process.
          example: pending
        link:
          type: string
          nullable: true
          description: The generated onboarding link for the user. Null if revoked.
          example: https://onboarding.ever.day/243324-234324-123123?signature=a1b2c3...
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >
        Include your API key in the `x-api-key` header to authenticate requests.
        Each organisation is provided with a unique API key. If your key is lost
        or compromised, contact support to request a new one.

````