# Create Account Code

Creates a new Account Code record. The `code` should be unique per tenant.

Endpoint: POST /api/v1/accountCodes
Version: 1.0.0
Security: bearerAuth

## Header parameters:

  - `X-PB-Developer-Partner-ID` (string)
    This is the Developer Partner ID. When the developer is the only partner, this field is not required.

## Request fields (application/json):

  - `code` (string, required)
    Customer-defined Account Code value (must be unique per tenant).
    Example: 278001

  - `description` (string)
    Human-readable description for the Account Code.
    Example: this is description for test code 278001

## Response 201 fields (application/json):

  - `id` (string)
    System-generated identifier of the created Account Code.
    Example: d8WpwWzlMgYO

## Response 400 fields (application/json):

  - `errors` (array)
    List of errors.

  - `errors.errorCode` (string)
    This error can be validation_error or internal_error or not_found or already_exists
    Example: validation_error

  - `errors.errorDescription` (string)
    The HTTP 400 Bad Request response status code indicates that the server cannot process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
    Example: Custom Fields not found

## Response 401 fields (application/json):

  - `message` (string, required)
    This is HTTP 401 Unauthorized response status code, that indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

