# Attach Files to Credit Application POST /partner/v2/shops/:shop_uuid/applications/:application_uuid/attachments The account statement file can be forwarded to Inbank via the POST /partner/v2/shops/:shop_uuid/applications/:application_uuid/attachments endpoint. If applied, this endpoint needs to be used instead of the AIS upload related endpoints. Please note, as income proof documents are processed by Inbank representatives in case of a manual upload, income verification can take some time. To learn the new decision the application has received after the account statement upload and processing, the GET /partner/v2/shops/:shop_uuid/applications/:application_uuid endpoint needs to be polled until there is a new decision_status. Request body parameters: Attachments must be submitted as form-data. cURL example: --form "attachments[]=@/path_to/file1.pdf" --form "attachments[]=@/path_to/file2.pdf" Endpoint: POST /partner/v2/shops/{shop_uuid}/applications/{application_uuid}/attachments Security: bearerAuth ## Path parameters: - `shop_uuid` (string, required) The unique identifier of the shop. Example: "a93f1f44-d5dd-4469-bfcc-c1de9e969213" - `application_uuid` (string, required) The unique identifier of the application. Example: "471e6282-3384-412b-af7b-646eb8f04391" ## Request fields (application/json): - `attachments` (array, required) Files to be added as attachments. - `type` (string, required) Type of document. Available option: income_proof_document. Enum: "income_proof_document" - `description` (string, required) Additional description of the attachments. Example: "Description here" ## Response 401 fields (application/json): - `message` (string) Unauthorized Example: "unauthorized" ## Response 403 fields (application/json): - `message` (string) Unauthorized access Example: "User is not authorized to access this resource with an explicit deny" ## Response 404 fields (application/json): - `message` (string) Not Found Example: "not_found" ## Response 422 fields (application/json): - `message` (string) Unprocessable Entity ## Response 500 fields (application/json): - `message` (string) Internal server error Example: "internal_server_error" ## Response 204 fields