Gets list of all items with value points within a project for administration.
project_id required | integer Project ID. You can find this parameter in your Publisher Account next to the name of the project. Example: 44056 |
value_point_sku required | string Value Point SKU. Example: value_point_3 |
The list of items with the value point reward was successfully received.
Basic authentication not passed or wrong. Make sure you used basic authentication or correct credentials.
curl -i -X GET \ -u <merchant_id_or_project_id>:<api_key> \ 'https://store.xsolla.com/api/v2/project/{project_id}/admin/items/{value_point_sku}/value_points/rewards'
{- "items": [
- {
- "item_id": 14232,
- "sku": "com.xsolla.booster_1",
- "name": {
- "en": "Booster"
}, - "amount": 100
}, - {
- "item_id": 14232,
- "sku": "com.xsolla.booster_mega",
- "name": {
- "en": "Mega Booster"
}, - "amount": 200
}
]
}