# Set value points for items Assigns value points to one or several items by an SKU. Users receive value points after they purchase these items. Note that this PUT request overwrites all previously set value points for items in the project. To avoid unintentional deletion of value points, include all items and their respective value points in each PUT request. If you only want to update the value points for a specific item while preserving the value points of other items, you should retrieve the current set of value points using a GET request, modify the desired item's value points, and then send the modified set of value points back with the updated value points for the specific item. Endpoint: PUT /v2/project/{project_id}/admin/items/{value_point_sku}/value_points/rewards Version: 2.0.0 Security: basicAuth ## Path parameters: - `project_id` (integer, required) Project ID. You can find this parameter in your Publisher Account next to the name of the project. Example: 44056 - `value_point_sku` (string, required) Value Point SKU. Example: "value_point_3" ## Request fields (application/json): - `sku` (string, required) Unique item ID. The SKU may contain only lowercase and uppercase Latin alphanumeric characters, periods, dashes, and underscores. Example: "booster_mega_1" - `amount` (integer, required) Amount of value points. ## Response 401 fields (application/json): - `statusCode` (integer) Example: 401 - `errorCode` (integer) Example: 1020 - `errorMessage` (string) Example: "[0401-1020]: Error in Authentication method occurred" ## Response 404 fields (application/json): - `statusCode` (integer) Example: 404 - `errorCode` (integer) Example: 4001 - `errorMessage` (string) Example: "[0401-4001]: Item with sku = 'electric_shiel' not found" ## Response 204 fields