# Import Job Progress Get bank account import job progress. It contains information about request that started the job. Endpoint: GET /bankaccountstorages/{storageId}/import/{id} Version: 2 Security: apiKey ## Path parameters: - `id` (string, required) Job ID. Example: "35f23c03-1c22-45fe-9484-3ffe769325de" - `storageId` (string, required) ID of the bank account storage. Example: "652697d8eb91545eb14e64e6" ## 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"