# /catalogs/account-types

## Purpose
Returns the list of available bank account types (e.g., Checking, Savings)
used for bank deposit delivery methods.
## When to Use
Use this endpoint when you need to:
- Populate account type dropdowns or selection fields in the UI
- Validate the account type before submitting a bank deposit transaction
- Display available account types when the recipient''s delivery method requires
a bank account

## Authentication
Requires `x-client-id` and `x-secret-key` headers for partner authentication.
## Notes
- The account types returned are global and not country-specific
- The `id` field is used as the value when submitting transactions with bank
deposit delivery
- Results include standard types such as Checking and Savings

## Common Errors
- **400000** - Invalid request format
- **401000** - Invalid credentials (verify x-client-id and x-secret-key headers)
- **404000** - No account types found
- **500000** - Internal server error

Endpoint: GET /catalogs/account-types
Version: 1.0.0

## Header parameters:

  - `x-client-id` (string, required)
    Error codes: required=400001, type=400002, minLength=400003, maxLength=400004

  - `x-secret-key` (string, required)
    Error codes: required=400001, type=400002, minLength=400003, maxLength=400004

## Response 200 fields (application/json):

  - `id` (string)
    Unique identifier for the account type
    Example: C

  - `type` (string)
    Account type name
    Example: Checking

## Response 400 fields (application/json):

  - `errors` (array)
    List of object errorsError catalog for 400 (click to expand)CodeDescription400000The body of the request is required. Invalid JSON format of the request body.400001client_id is required400005secret_key is required

  - `errors.status` (string)

  - `errors.code` (number)

  - `errors.message` (string)

  - `errors.details` (string)

## Response 401 fields (application/json):

  - `errors` (array)
    List of object errorsError catalog for 401 (click to expand)CodeDescription401000Invalid credentials

  - `errors.status` (string)

  - `errors.code` (number)

  - `errors.message` (string)

  - `errors.details` (string)

## Response 404 fields (application/json):

  - `errors` (array)
    List of object errorsError catalog for 404 (click to expand)CodeDescription401000Location not found

  - `errors.status` (string)

  - `errors.code` (number)

  - `errors.message` (string)

  - `errors.details` (string)

## Response 500 fields (application/json):

  - `errors` (array)
    List of object errorsError catalog for 500 (click to expand)CodeDescription500000Internal Error

  - `errors.status` (string)

  - `errors.code` (number)

  - `errors.message` (string)

  - `errors.details` (string)

