# ACCOUNT_OPENING_REQUEST An account opening request has been either accepted or rejected. Endpoint: POST account_opening_request Version: 1.0 ## Request fields (application/json): - `account_opening_request_id` (string) The ID of the account opening request. Example: "f8d7fbbd587047a0aa449ce69d2d6c08aorq" - `customer_id` (string) The ID (i.e., or ) of the customer for whom you're opening the account. Example: "b109ee6f66d2a061e006bd31c6455df2cper" - `status` (string) The status of the account opening request. Enum: "INITIATED", "IN_PROGRESS", "COMPLETED", "REJECTED" - `account_id` (string) The ID of the account that was created for the customer. Example: "c5a0e32369e9372e0fdf490294cecd8dcacc" - `updated_at` (string) The timestamp (date-time) when the AOR was last updated. Example: "2021-12-22T15:05:33.634+00:00" - `error` (object,null) An object containing information about the reason why an account opening request has failed. Example: {"code":"green_person_vetting","detail":"CustomerVettingStatus for person has to be 'green' to open an account."} - `error.code` (string) Code value describing the failure_reason. Enum: "existing_customer", "alltime_accounts_count_below_set_limit", "active_accounts_count_below_set_limit" - `error.detail` (string) Additional details about the failure_reason. Enum: "The provided customer does not exist or provided identifier is wrong.", "A new account cannot be opened when set limits for given account type are reached.", "A new account cannot be opened when set limits for given active account type are reached."