# Update Signing for Application PATCH /partner/v2/shops/:shop_uuid/applications/:application_uuid/signings To confirm the signing the customer needs to enter the code they received to their mobile from Inbank. The code is sent over to Inbank for confirmation via the PATCH /partner/v2/shops/:shop_uuid/applications/:application_uuid/signings endpoint. Endpoint: PATCH /partner/v2/shops/{shop_uuid}/applications/{application_uuid}/signings 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): - `method` (string, required) Signing method. Options: sms. Example: "sms" - `confirmation_code` (string, required) Code confirming customer signing. Example: 123456 ## Response 200 fields (application/json): - `signing` (object) - `signing.uuid` (string) Credit application uuid. Example: "f4874353-6bb3-4dc8-a25a-3b1c000000000" - `signing.number` (string) Credit application number. Example: 89001300000 - `signing.signed_at` (string) Credit application signing date and time. Example: "2019-05-22T14:36:22+02:00" - `signing.method` (string) The signing method. Example: "sms" ## 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"