# Get onboarding URL for a task

Endpoint: GET /api/v1/tasks/{task_id}/onboarding
Version: 0.0.1
Security: form_session, user_session, component_session, component_token, api_token

## Path parameters:

  - `task_id` (string, required)

## Query parameters:

  - `assignee_type` (string, required)

  - `locale` (string)

  - `redirect_to` (string)

  - `otp_required` (boolean)
    Whether OTP verification is required before accessing the onboarding form

  - `otp_methods` (string)
    Comma-separated list of allowed OTP delivery methods (sms, email)

## Response 200 fields (application/json):

  - `url` (string, required)

## Response 400 fields (application/json):

  - `issues` (array, required)

  - `issues._tag` (string, required)
    The tag identifying the type of parse issue
    Enum: "Pointer", "Unexpected", "Missing", "Composite", "Refinement", "Transformation", "Type", "Forbidden"

  - `issues.path` (array, required)
    The path to the property where the issue occurred

  - `issues.path._tag` (string, required)
    Enum: "symbol"

  - `issues.path.key` (string, required)

  - `issues.message` (string, required)
    A descriptive message explaining the issue

  - `message` (string, required)

  - `_tag` (string, required)
    Enum: "HttpApiDecodeError"

## Response 401 fields (application/json):

  - `message` (string, required)

  - `_tag` (string, required)
    Enum: "Unauthorized"

## Response 403 fields (application/json):

  - `message` (string, required)

  - `_tag` (string, required)
    Enum: "Forbidden"

## Response 404 fields (application/json):

  - `message` (string, required)

  - `_tag` (string, required)
    Enum: "ResourceNotFoundError"

