# Manual Account Statement Upload POST /partner/v3/shops/:shopUuid/applications/:applicationUuid/attachments The account statement file can be forwarded to Inbank via the POST /partner/v3/shops/:shopUuid/applications/:applicationUuid/attachments endpoint. If applied, this endpoint needs to be used instead of the AIS upload related endpoints (steps 2 and 3 of the API request flows). 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/v3/shops/:shopUuid/applications/:applicationUuid endpoint needs to be polled until there is a new decisionStatus. 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/v3/shops/{shopUuid}/applications/{applicationUuid}/attachments Security: bearerAuth ## Path parameters: - `shopUuid` (string, required) The unique identifier of the shop. Example: "a93f1f44-d5dd-4469-bfcc-c1de9e969213" - `applicationUuid` (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