Update a reward
curl --request PUT \
--url https://api.kintra.io/api/v1/tenant/{tenantId}/rewards/{rewardId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>",
"is_active": true,
"metadata": {},
"min_tier_id": "<string>",
"title": "<string>",
"xp_cost": 123
}
'const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
description: '<string>',
is_active: true,
metadata: {},
min_tier_id: '<string>',
title: '<string>',
xp_cost: 123
})
};
fetch('https://api.kintra.io/api/v1/tenant/{tenantId}/rewards/{rewardId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.kintra.io/api/v1/tenant/{tenantId}/rewards/{rewardId}"
payload = {
"description": "<string>",
"is_active": True,
"metadata": {},
"min_tier_id": "<string>",
"title": "<string>",
"xp_cost": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"success": true,
"data": {
"success": true
},
"errors": [
{
"message": "<string>",
"path": "<string>"
}
],
"message": "<string>"
}{
"success": true,
"data": null,
"errors": [
{
"message": "<string>",
"path": "<string>"
}
],
"message": "<string>"
}{
"success": true,
"data": null,
"errors": [
{
"message": "<string>",
"path": "<string>"
}
],
"message": "<string>"
}{
"success": true,
"data": null,
"errors": [
{
"message": "<string>",
"path": "<string>"
}
],
"message": "<string>"
}Rewards
Update a reward
Revises a reward in place through the Portal API.
See the Gateway API entry for the full description.
PUT
/
tenant
/
{tenantId}
/
rewards
/
{rewardId}
Update a reward
curl --request PUT \
--url https://api.kintra.io/api/v1/tenant/{tenantId}/rewards/{rewardId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"description": "<string>",
"is_active": true,
"metadata": {},
"min_tier_id": "<string>",
"title": "<string>",
"xp_cost": 123
}
'const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
description: '<string>',
is_active: true,
metadata: {},
min_tier_id: '<string>',
title: '<string>',
xp_cost: 123
})
};
fetch('https://api.kintra.io/api/v1/tenant/{tenantId}/rewards/{rewardId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.kintra.io/api/v1/tenant/{tenantId}/rewards/{rewardId}"
payload = {
"description": "<string>",
"is_active": True,
"metadata": {},
"min_tier_id": "<string>",
"title": "<string>",
"xp_cost": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"success": true,
"data": {
"success": true
},
"errors": [
{
"message": "<string>",
"path": "<string>"
}
],
"message": "<string>"
}{
"success": true,
"data": null,
"errors": [
{
"message": "<string>",
"path": "<string>"
}
],
"message": "<string>"
}{
"success": true,
"data": null,
"errors": [
{
"message": "<string>",
"path": "<string>"
}
],
"message": "<string>"
}{
"success": true,
"data": null,
"errors": [
{
"message": "<string>",
"path": "<string>"
}
],
"message": "<string>"
}Authorizations
Auth0 access token
Body
application/json
Visibility/redeemability flag. This is the only reward field mutable after publish.
Freeform reward metadata (full-replace of the jsonb on update). May carry a tenant-scoped
image_key; any client-supplied image_url is rejected — the URL is derived on read.
Show child attributes
Show child attributes
Tier gate — UUID of the minimum tier, or ''/null to clear (all tiers).
Available options:
initialized, published ⌘I

