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

# Create Connect Account

> Create a Stripe Connect account and return an onboarding URL — or, for an
existing account, a dashboard login link (if onboarding is complete) or a
fresh onboarding link to resume (if it isn't).

A developer must complete Stripe's hosted onboarding flow (KYC, bank setup)
before a login link works; calling ``create_login_link`` on a half-onboarded
account raises ``InvalidRequestError`` ("...has not completed onboarding")
which previously surfaced as a 502 (issue #1582).



## OpenAPI

````yaml /openapi.json post /api/v1/developers/connect/onboard
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/developers/connect/onboard:
    post:
      tags:
        - Stripe Connect
      summary: Create Connect Account
      description: >-
        Create a Stripe Connect account and return an onboarding URL — or, for
        an

        existing account, a dashboard login link (if onboarding is complete) or
        a

        fresh onboarding link to resume (if it isn't).


        A developer must complete Stripe's hosted onboarding flow (KYC, bank
        setup)

        before a login link works; calling ``create_login_link`` on a
        half-onboarded

        account raises ``InvalidRequestError`` ("...has not completed
        onboarding")

        which previously surfaced as a 502 (issue #1582).
      operationId: create_connect_account_api_v1_developers_connect_onboard_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````