# Apply

When the Business Application object has been completed, along with Related Party Applications and Document Requests (see the Onboarding Businesses Guide), call this endpoint to submit the business application for review.

Endpoint: POST /api/v1/business-applications/{application_id}/apply/
Version: Version: 5153994b
Security: HTTPBearer

## Path parameters:

  - `application_id` (string, required)

## Header parameters:

  - `x-jiko-idempotency` (string, required)

  - `x-jiko-signature` (string, required)

## Response 200 fields (application/json):

  - `id` (string, required)

  - `time_created` (string, required)

  - `updated_at` (string, required)

  - `exception_reasons` (array)

  - `customer_id` (any)
    null until application status is APPROVED

  - `name` (any)

  - `entity_type` (any)

  - `doing_business_as` (any)

  - `identification_number` (any)
    - `identification_number` (string, required)
    - `issuing_country` (any)
      A ISO-3166 Alpha-2 country code (Abbreviated. Example: "US")
    - `type` (string, required)
      Enum: "TIN", "EIN", "NON_US_BUSINESS_ID"

  - `address` (any)
    - `street_address` (string, required)
      Street address
    - `street_address2` (any)
      Apartment, Suite, Box number, etc.
    - `city` (string, required)
      City / Town
    - `postal_code` (string, required)
      Postal code / ZIP code
    - `state` (any)
      State (Postal Abbreviations. Example: "AL", "NJ", "OH")
    - `country` (string, required)
      A ISO-3166 Alpha-2 country code (Abbreviated. Example: "US")

  - `website` (any)

  - `contact` (any)
    - `name` (any)
      - `first_name` (string, required)
        First Name
      - `middle_name` (any)
        Middle Name
      - `last_name` (string, required)
        Last Name
    - `phone_number` (any)
    - `email` (any)

  - `formation_date` (any)

  - `risk_info` (any)
    - `risk_categories` (any)
    - `company_mission` (any)
    - `has_current_enforcement_actions` (any)
    - `primary_regulator` (any)
    - `business_activity_location` (any)
    - `source_of_funds` (any)
    - `source_of_funds_explanation` (any)
    - `account_usage` (any)
    - `annual_revenue` (any)
    - `monthly_transactions` (any)
    - `first_month_deposit` (any)

  - `industry` (any)
    - `industry` (any)
    - `other_industry` (any)

  - `agreement_consent` (any)
    - `version` (string, required)
      Agreement version
    - `timestamp` (string, required)
      Timestamp of applicant's acknowledgement of the agreements

  - `status` (string, required)
    Enum: "CREATED", "SUBMITTED", "CLOSED", "APPROVED", "REJECTED", "MANUAL_REVIEW", "DOCUMENTS_NEEDED", "PENDING"

## Response 422 fields (application/json):

  - `detail` (array)

  - `detail.loc` (array, required)

  - `detail.msg` (string, required)

  - `detail.type` (string, required)

  - `detail.input` (any)

  - `detail.ctx` (object)


