# Create Signing for Application POST /partner/v2/shops/:shop_uuid/applications/:application_uuid/signings After the customer has reviewed the application, they can proceed to application signing which is done via the POST /partner/v2/shops/:shop_uuid/applications/:application_uuid/signings endpoint. There are the following signing methods available: - digital - the method is used in cases when the partner has a separate signing solution. The request with the digital signing method is used as a confirmation that signing has been successful. - paper - the method is used if you are collecting paper applications signed by the customer. - sms - with this method the signing is done using an SMS code. After you send the request, the customer will receive an SMS with the code from Inbank. After that, the code is sent over to Inbank for confirmation via the PATCH /contracts/:contract_uuid/signings request. Endpoint: POST /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, digital, paper. Example: "paper" ## Response 201 fields (application/json): - `credit_application` (object) - `credit_application.uuid` (string) Credit application uuid. Example: "f4874353-6bb3-4dc8-a25a-3b1c000000000" - `credit_application.number` (string) Credit application number. Example: 89001300000 - `credit_application.confirmed_at` (string) Credit application confirmation date and time. Example: "2019-05-22T14:36:22+02:00" ## 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 503 fields (application/json): - `message` (string) Internal server error Example: "internal_server_error"