# Contract Activation POST /partner/v3/shops/:shopUuid/rental/products/:productCode/contracts/:contractUuid/activation Once the identifiers of the hero device are sent to Inbank, the contract should be approved. This will trigger the contract activation process on the Inbank side and you should receive a callback with the status completed once the contract is activated. Ideally, activation should be done right after the customer has received the shipped device (picked it up from the parcel machine or received it by any other means). Alternatively, when agreed with Inbank, activation can be done when the device is shipped. The request does not require any parameters to be passed in its body. Endpoint: POST /partner/v3/shops/{shopUuid}/rental/products/{productCode}/contracts/{contractUuid}/activation Security: bearerAuth ## Path parameters: - `shopUuid` (string, required) The unique identifier of the shop. Example: "a93f1f44-d5dd-4469-bfcc-c1de9e969213" - `productCode` (string, required) Example: "example_code" - `contractUuid` (string, required) UUID of the Smart Rent contract. The contract UUID is part of the response to the Session Details request. Example: "788ec8c4-c497-470b-8505-2303f151d427" ## 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) Additional information in human readable format. This field is not intended to be used by the API client. Example: "Asset model not found" - `errorCode` (string) The error code giving additional information about the nature of the error. Example: "ASSET_MODEL_NOT_FOUND" ## Response 500 fields (application/json): - `message` (string) Internal server error Example: "internal_server_error" ## Response 204 fields