# Import Bank Accounts -> Start a job to import bank account records from a previously uploaded CSV file, identified by the storage ID in the request object. Endpoint: POST /bankaccountstorages/{storageId}/import Version: 2 Security: apiKey ## Path parameters: - `storageId` (string, required) ID of the bank account storage. Example: "652697d8eb91545eb14e64e6" ## Request fields (application/json): - `url` (string, required) -> Url received in response from request to endpoint. It is a file name of file uploaded to the storage with bank account data. Example: "bankaccountdata.csv" - `featuresOn` (array) Feature(s) to be used during the import job: * - Removes all existing data in the storage before the file is imported. Enum: "CLEAR_STORAGE", "MERGE_PAYMENTS" - `dataTransformationDefinitionId` (string) The ID of an existing data transformation, which will be used to transform raw records into bank accounts. Example: "72d6900fce6b326088f5d9d91049e3e6" ## Response 200 fields (application/json): - `id` (string) Unique identifier of the Bank Account Storage. . Example: "72d6900fce6b326088f5d9d91049e3e6" - `createdBy` (string) Creator of a resource. Example: "76248934691294444" - `createdAt` (string) Date of creation (ISO 8601-compliant). Example: "2025-08-29T09:46:42Z" - `modifiedAt` (string) Date of modification (ISO 8601-compliant). Example: "2025-08-29T09:46:42Z" - `progress` (integer) Progress (%) of the job. Example: "77" - `status` (string) Job execution status. Example: "RUNNING" - `statusMessage` (string) Additional information to explain the status. Example: "The job failed because storage is empty." - `parameters` (object) Request to import bank account data from a file. - `parameters.url` (string, required) -> Url received in response from request to endpoint. It is a file name of file uploaded to the storage with bank account data. Example: "bankaccountdata.csv" - `parameters.featuresOn` (array) Feature(s) to be used during the import job: * - Removes all existing data in the storage before the file is imported. Enum: "CLEAR_STORAGE", "MERGE_PAYMENTS" - `parameters.dataTransformationDefinitionId` (string) The ID of an existing data transformation, which will be used to transform raw records into bank accounts. Example: "72d6900fce6b326088f5d9d91049e3e6"