# Create applicant

Create a new applicant object in the system

Endpoint: POST /applicants
Version: 1.0
Security: API-Key

## Response 200 fields (application/json):

  - `applicant_id` (string)
    A unique identifier of an applicant, that is assigned by our system after an applicant object was created with a “Create an applicant” request

## Response 400 fields (application/json):

  - `type` (string)
    Example: "bad_request"

  - `errors` (array)

## Response 402 fields (application/json):

  - `type` (string)
    Example: "insufficient_funds"

  - `errors` (array)

## Response 422 fields (application/json):

  - `type` (string)
    Example: "validation"

  - `errors` (array)

  - `errors.parameter` (string)
    Example: "parameter_name"

  - `errors.message` (string)
    Example: "parameter_name is not valid"

## Response 429 fields (application/json):

  - `type` (string)
    Example: "limit_exceeded"

  - `errors` (array)

  - `errors.message` (string)
    Example: "The limit for creating applicants has been exceeded (last minute)"

## Response 500 fields (application/json):

  - `type` (string)
    Example: "internal_server"

  - `errors` (array)


