Add Reward Definition
curl --request POST \
--url https://api.{tenant}.getomneo.com/api/v3/rewards/definitions \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"handle": "<string>",
"value": 123,
"period": 123,
"region_id": 123,
"currency": "<string>",
"max_value": 123,
"absolute_expiry": "<string>",
"expiry_condition": [
"<string>"
],
"description": "<string>",
"short_description": "<string>",
"long_description": "<string>",
"terms_conditions": "<string>",
"earn_instructions": "<string>",
"icon": "<string>",
"image_url": "<string>",
"notify_issue_offset": 123,
"notify_expiry_offset": 123,
"issue_target_id": 123,
"expiry_target_id": 123,
"extend_target_id": 123,
"internal_notes": "<string>",
"is_assignable": true,
"is_published": true,
"is_reassignable": true,
"is_extendable": true,
"extend_days": 123,
"extend_days_condition": [
"<string>"
],
"notify_issue_offset_days": 123,
"notify_issue_offset_hour": 123,
"notify_remind_offset_days": 123,
"notify_remind_offset_hour": 123,
"notify_extend_offset_days": 123,
"notify_extend_offset_hour": 123,
"tags": [
"<string>"
]
}
'import requests
url = "https://api.{tenant}.getomneo.com/api/v3/rewards/definitions"
payload = {
"name": "<string>",
"handle": "<string>",
"value": 123,
"period": 123,
"region_id": 123,
"currency": "<string>",
"max_value": 123,
"absolute_expiry": "<string>",
"expiry_condition": ["<string>"],
"description": "<string>",
"short_description": "<string>",
"long_description": "<string>",
"terms_conditions": "<string>",
"earn_instructions": "<string>",
"icon": "<string>",
"image_url": "<string>",
"notify_issue_offset": 123,
"notify_expiry_offset": 123,
"issue_target_id": 123,
"expiry_target_id": 123,
"extend_target_id": 123,
"internal_notes": "<string>",
"is_assignable": True,
"is_published": True,
"is_reassignable": True,
"is_extendable": True,
"extend_days": 123,
"extend_days_condition": ["<string>"],
"notify_issue_offset_days": 123,
"notify_issue_offset_hour": 123,
"notify_remind_offset_days": 123,
"notify_remind_offset_hour": 123,
"notify_extend_offset_days": 123,
"notify_extend_offset_hour": 123,
"tags": ["<string>"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
handle: '<string>',
value: 123,
period: 123,
region_id: 123,
currency: '<string>',
max_value: 123,
absolute_expiry: '<string>',
expiry_condition: ['<string>'],
description: '<string>',
short_description: '<string>',
long_description: '<string>',
terms_conditions: '<string>',
earn_instructions: '<string>',
icon: '<string>',
image_url: '<string>',
notify_issue_offset: 123,
notify_expiry_offset: 123,
issue_target_id: 123,
expiry_target_id: 123,
extend_target_id: 123,
internal_notes: '<string>',
is_assignable: true,
is_published: true,
is_reassignable: true,
is_extendable: true,
extend_days: 123,
extend_days_condition: ['<string>'],
notify_issue_offset_days: 123,
notify_issue_offset_hour: 123,
notify_remind_offset_days: 123,
notify_remind_offset_hour: 123,
notify_extend_offset_days: 123,
notify_extend_offset_hour: 123,
tags: ['<string>']
})
};
fetch('https://api.{tenant}.getomneo.com/api/v3/rewards/definitions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.{tenant}.getomneo.com/api/v3/rewards/definitions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'handle' => '<string>',
'value' => 123,
'period' => 123,
'region_id' => 123,
'currency' => '<string>',
'max_value' => 123,
'absolute_expiry' => '<string>',
'expiry_condition' => [
'<string>'
],
'description' => '<string>',
'short_description' => '<string>',
'long_description' => '<string>',
'terms_conditions' => '<string>',
'earn_instructions' => '<string>',
'icon' => '<string>',
'image_url' => '<string>',
'notify_issue_offset' => 123,
'notify_expiry_offset' => 123,
'issue_target_id' => 123,
'expiry_target_id' => 123,
'extend_target_id' => 123,
'internal_notes' => '<string>',
'is_assignable' => true,
'is_published' => true,
'is_reassignable' => true,
'is_extendable' => true,
'extend_days' => 123,
'extend_days_condition' => [
'<string>'
],
'notify_issue_offset_days' => 123,
'notify_issue_offset_hour' => 123,
'notify_remind_offset_days' => 123,
'notify_remind_offset_hour' => 123,
'notify_extend_offset_days' => 123,
'notify_extend_offset_hour' => 123,
'tags' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.{tenant}.getomneo.com/api/v3/rewards/definitions"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"handle\": \"<string>\",\n \"value\": 123,\n \"period\": 123,\n \"region_id\": 123,\n \"currency\": \"<string>\",\n \"max_value\": 123,\n \"absolute_expiry\": \"<string>\",\n \"expiry_condition\": [\n \"<string>\"\n ],\n \"description\": \"<string>\",\n \"short_description\": \"<string>\",\n \"long_description\": \"<string>\",\n \"terms_conditions\": \"<string>\",\n \"earn_instructions\": \"<string>\",\n \"icon\": \"<string>\",\n \"image_url\": \"<string>\",\n \"notify_issue_offset\": 123,\n \"notify_expiry_offset\": 123,\n \"issue_target_id\": 123,\n \"expiry_target_id\": 123,\n \"extend_target_id\": 123,\n \"internal_notes\": \"<string>\",\n \"is_assignable\": true,\n \"is_published\": true,\n \"is_reassignable\": true,\n \"is_extendable\": true,\n \"extend_days\": 123,\n \"extend_days_condition\": [\n \"<string>\"\n ],\n \"notify_issue_offset_days\": 123,\n \"notify_issue_offset_hour\": 123,\n \"notify_remind_offset_days\": 123,\n \"notify_remind_offset_hour\": 123,\n \"notify_extend_offset_days\": 123,\n \"notify_extend_offset_hour\": 123,\n \"tags\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.{tenant}.getomneo.com/api/v3/rewards/definitions")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"handle\": \"<string>\",\n \"value\": 123,\n \"period\": 123,\n \"region_id\": 123,\n \"currency\": \"<string>\",\n \"max_value\": 123,\n \"absolute_expiry\": \"<string>\",\n \"expiry_condition\": [\n \"<string>\"\n ],\n \"description\": \"<string>\",\n \"short_description\": \"<string>\",\n \"long_description\": \"<string>\",\n \"terms_conditions\": \"<string>\",\n \"earn_instructions\": \"<string>\",\n \"icon\": \"<string>\",\n \"image_url\": \"<string>\",\n \"notify_issue_offset\": 123,\n \"notify_expiry_offset\": 123,\n \"issue_target_id\": 123,\n \"expiry_target_id\": 123,\n \"extend_target_id\": 123,\n \"internal_notes\": \"<string>\",\n \"is_assignable\": true,\n \"is_published\": true,\n \"is_reassignable\": true,\n \"is_extendable\": true,\n \"extend_days\": 123,\n \"extend_days_condition\": [\n \"<string>\"\n ],\n \"notify_issue_offset_days\": 123,\n \"notify_issue_offset_hour\": 123,\n \"notify_remind_offset_days\": 123,\n \"notify_remind_offset_hour\": 123,\n \"notify_extend_offset_days\": 123,\n \"notify_extend_offset_hour\": 123,\n \"tags\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.{tenant}.getomneo.com/api/v3/rewards/definitions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"handle\": \"<string>\",\n \"value\": 123,\n \"period\": 123,\n \"region_id\": 123,\n \"currency\": \"<string>\",\n \"max_value\": 123,\n \"absolute_expiry\": \"<string>\",\n \"expiry_condition\": [\n \"<string>\"\n ],\n \"description\": \"<string>\",\n \"short_description\": \"<string>\",\n \"long_description\": \"<string>\",\n \"terms_conditions\": \"<string>\",\n \"earn_instructions\": \"<string>\",\n \"icon\": \"<string>\",\n \"image_url\": \"<string>\",\n \"notify_issue_offset\": 123,\n \"notify_expiry_offset\": 123,\n \"issue_target_id\": 123,\n \"expiry_target_id\": 123,\n \"extend_target_id\": 123,\n \"internal_notes\": \"<string>\",\n \"is_assignable\": true,\n \"is_published\": true,\n \"is_reassignable\": true,\n \"is_extendable\": true,\n \"extend_days\": 123,\n \"extend_days_condition\": [\n \"<string>\"\n ],\n \"notify_issue_offset_days\": 123,\n \"notify_issue_offset_hour\": 123,\n \"notify_remind_offset_days\": 123,\n \"notify_remind_offset_hour\": 123,\n \"notify_extend_offset_days\": 123,\n \"notify_extend_offset_hour\": 123,\n \"tags\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": 123,
"name": "<string>",
"handle": "<string>",
"region_id": 123,
"region": {
"id": 123,
"name": "<string>",
"handle": "<string>"
},
"currency": "<string>",
"period": 123,
"period_type": "<string>",
"absolute_expiry": "<string>",
"expiry_condition": [
"<unknown>"
],
"description": "<string>",
"short_description": "<string>",
"long_description": "<string>",
"terms_conditions": "<string>",
"earn_instructions": "<string>",
"icon": "<string>",
"image_url": "<string>",
"issue_target_id": 123,
"expiry_target_id": 123,
"extend_target_id": 123,
"notify_issue_offset": 123,
"notify_expiry_offset": 123,
"notify_schedule_offset": 123,
"notify_issue_offset_days": 123,
"notify_issue_offset_hour": 123,
"notify_remind_offset_days": 123,
"notify_remind_offset_hour": 123,
"notify_extend_offset_days": 123,
"notify_extend_offset_hour": 123,
"internal_notes": "<string>",
"type": "<string>",
"value": 123,
"max_value": 123,
"is_extendable": true,
"is_assignable": true,
"is_reassignable": true,
"is_published": true,
"extend_days": 123,
"extend_days_condition": [
"<unknown>"
],
"tags": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}Reward Definition
Add Reward Definition
A POST to the /rewards/definitions endpoint allows your application to create a Reward Definition.
POST
/
v3
/
rewards
/
definitions
Add Reward Definition
curl --request POST \
--url https://api.{tenant}.getomneo.com/api/v3/rewards/definitions \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"handle": "<string>",
"value": 123,
"period": 123,
"region_id": 123,
"currency": "<string>",
"max_value": 123,
"absolute_expiry": "<string>",
"expiry_condition": [
"<string>"
],
"description": "<string>",
"short_description": "<string>",
"long_description": "<string>",
"terms_conditions": "<string>",
"earn_instructions": "<string>",
"icon": "<string>",
"image_url": "<string>",
"notify_issue_offset": 123,
"notify_expiry_offset": 123,
"issue_target_id": 123,
"expiry_target_id": 123,
"extend_target_id": 123,
"internal_notes": "<string>",
"is_assignable": true,
"is_published": true,
"is_reassignable": true,
"is_extendable": true,
"extend_days": 123,
"extend_days_condition": [
"<string>"
],
"notify_issue_offset_days": 123,
"notify_issue_offset_hour": 123,
"notify_remind_offset_days": 123,
"notify_remind_offset_hour": 123,
"notify_extend_offset_days": 123,
"notify_extend_offset_hour": 123,
"tags": [
"<string>"
]
}
'import requests
url = "https://api.{tenant}.getomneo.com/api/v3/rewards/definitions"
payload = {
"name": "<string>",
"handle": "<string>",
"value": 123,
"period": 123,
"region_id": 123,
"currency": "<string>",
"max_value": 123,
"absolute_expiry": "<string>",
"expiry_condition": ["<string>"],
"description": "<string>",
"short_description": "<string>",
"long_description": "<string>",
"terms_conditions": "<string>",
"earn_instructions": "<string>",
"icon": "<string>",
"image_url": "<string>",
"notify_issue_offset": 123,
"notify_expiry_offset": 123,
"issue_target_id": 123,
"expiry_target_id": 123,
"extend_target_id": 123,
"internal_notes": "<string>",
"is_assignable": True,
"is_published": True,
"is_reassignable": True,
"is_extendable": True,
"extend_days": 123,
"extend_days_condition": ["<string>"],
"notify_issue_offset_days": 123,
"notify_issue_offset_hour": 123,
"notify_remind_offset_days": 123,
"notify_remind_offset_hour": 123,
"notify_extend_offset_days": 123,
"notify_extend_offset_hour": 123,
"tags": ["<string>"]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
handle: '<string>',
value: 123,
period: 123,
region_id: 123,
currency: '<string>',
max_value: 123,
absolute_expiry: '<string>',
expiry_condition: ['<string>'],
description: '<string>',
short_description: '<string>',
long_description: '<string>',
terms_conditions: '<string>',
earn_instructions: '<string>',
icon: '<string>',
image_url: '<string>',
notify_issue_offset: 123,
notify_expiry_offset: 123,
issue_target_id: 123,
expiry_target_id: 123,
extend_target_id: 123,
internal_notes: '<string>',
is_assignable: true,
is_published: true,
is_reassignable: true,
is_extendable: true,
extend_days: 123,
extend_days_condition: ['<string>'],
notify_issue_offset_days: 123,
notify_issue_offset_hour: 123,
notify_remind_offset_days: 123,
notify_remind_offset_hour: 123,
notify_extend_offset_days: 123,
notify_extend_offset_hour: 123,
tags: ['<string>']
})
};
fetch('https://api.{tenant}.getomneo.com/api/v3/rewards/definitions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.{tenant}.getomneo.com/api/v3/rewards/definitions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'handle' => '<string>',
'value' => 123,
'period' => 123,
'region_id' => 123,
'currency' => '<string>',
'max_value' => 123,
'absolute_expiry' => '<string>',
'expiry_condition' => [
'<string>'
],
'description' => '<string>',
'short_description' => '<string>',
'long_description' => '<string>',
'terms_conditions' => '<string>',
'earn_instructions' => '<string>',
'icon' => '<string>',
'image_url' => '<string>',
'notify_issue_offset' => 123,
'notify_expiry_offset' => 123,
'issue_target_id' => 123,
'expiry_target_id' => 123,
'extend_target_id' => 123,
'internal_notes' => '<string>',
'is_assignable' => true,
'is_published' => true,
'is_reassignable' => true,
'is_extendable' => true,
'extend_days' => 123,
'extend_days_condition' => [
'<string>'
],
'notify_issue_offset_days' => 123,
'notify_issue_offset_hour' => 123,
'notify_remind_offset_days' => 123,
'notify_remind_offset_hour' => 123,
'notify_extend_offset_days' => 123,
'notify_extend_offset_hour' => 123,
'tags' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.{tenant}.getomneo.com/api/v3/rewards/definitions"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"handle\": \"<string>\",\n \"value\": 123,\n \"period\": 123,\n \"region_id\": 123,\n \"currency\": \"<string>\",\n \"max_value\": 123,\n \"absolute_expiry\": \"<string>\",\n \"expiry_condition\": [\n \"<string>\"\n ],\n \"description\": \"<string>\",\n \"short_description\": \"<string>\",\n \"long_description\": \"<string>\",\n \"terms_conditions\": \"<string>\",\n \"earn_instructions\": \"<string>\",\n \"icon\": \"<string>\",\n \"image_url\": \"<string>\",\n \"notify_issue_offset\": 123,\n \"notify_expiry_offset\": 123,\n \"issue_target_id\": 123,\n \"expiry_target_id\": 123,\n \"extend_target_id\": 123,\n \"internal_notes\": \"<string>\",\n \"is_assignable\": true,\n \"is_published\": true,\n \"is_reassignable\": true,\n \"is_extendable\": true,\n \"extend_days\": 123,\n \"extend_days_condition\": [\n \"<string>\"\n ],\n \"notify_issue_offset_days\": 123,\n \"notify_issue_offset_hour\": 123,\n \"notify_remind_offset_days\": 123,\n \"notify_remind_offset_hour\": 123,\n \"notify_extend_offset_days\": 123,\n \"notify_extend_offset_hour\": 123,\n \"tags\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.{tenant}.getomneo.com/api/v3/rewards/definitions")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"handle\": \"<string>\",\n \"value\": 123,\n \"period\": 123,\n \"region_id\": 123,\n \"currency\": \"<string>\",\n \"max_value\": 123,\n \"absolute_expiry\": \"<string>\",\n \"expiry_condition\": [\n \"<string>\"\n ],\n \"description\": \"<string>\",\n \"short_description\": \"<string>\",\n \"long_description\": \"<string>\",\n \"terms_conditions\": \"<string>\",\n \"earn_instructions\": \"<string>\",\n \"icon\": \"<string>\",\n \"image_url\": \"<string>\",\n \"notify_issue_offset\": 123,\n \"notify_expiry_offset\": 123,\n \"issue_target_id\": 123,\n \"expiry_target_id\": 123,\n \"extend_target_id\": 123,\n \"internal_notes\": \"<string>\",\n \"is_assignable\": true,\n \"is_published\": true,\n \"is_reassignable\": true,\n \"is_extendable\": true,\n \"extend_days\": 123,\n \"extend_days_condition\": [\n \"<string>\"\n ],\n \"notify_issue_offset_days\": 123,\n \"notify_issue_offset_hour\": 123,\n \"notify_remind_offset_days\": 123,\n \"notify_remind_offset_hour\": 123,\n \"notify_extend_offset_days\": 123,\n \"notify_extend_offset_hour\": 123,\n \"tags\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.{tenant}.getomneo.com/api/v3/rewards/definitions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"handle\": \"<string>\",\n \"value\": 123,\n \"period\": 123,\n \"region_id\": 123,\n \"currency\": \"<string>\",\n \"max_value\": 123,\n \"absolute_expiry\": \"<string>\",\n \"expiry_condition\": [\n \"<string>\"\n ],\n \"description\": \"<string>\",\n \"short_description\": \"<string>\",\n \"long_description\": \"<string>\",\n \"terms_conditions\": \"<string>\",\n \"earn_instructions\": \"<string>\",\n \"icon\": \"<string>\",\n \"image_url\": \"<string>\",\n \"notify_issue_offset\": 123,\n \"notify_expiry_offset\": 123,\n \"issue_target_id\": 123,\n \"expiry_target_id\": 123,\n \"extend_target_id\": 123,\n \"internal_notes\": \"<string>\",\n \"is_assignable\": true,\n \"is_published\": true,\n \"is_reassignable\": true,\n \"is_extendable\": true,\n \"extend_days\": 123,\n \"extend_days_condition\": [\n \"<string>\"\n ],\n \"notify_issue_offset_days\": 123,\n \"notify_issue_offset_hour\": 123,\n \"notify_remind_offset_days\": 123,\n \"notify_remind_offset_hour\": 123,\n \"notify_extend_offset_days\": 123,\n \"notify_extend_offset_hour\": 123,\n \"tags\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": 123,
"name": "<string>",
"handle": "<string>",
"region_id": 123,
"region": {
"id": 123,
"name": "<string>",
"handle": "<string>"
},
"currency": "<string>",
"period": 123,
"period_type": "<string>",
"absolute_expiry": "<string>",
"expiry_condition": [
"<unknown>"
],
"description": "<string>",
"short_description": "<string>",
"long_description": "<string>",
"terms_conditions": "<string>",
"earn_instructions": "<string>",
"icon": "<string>",
"image_url": "<string>",
"issue_target_id": 123,
"expiry_target_id": 123,
"extend_target_id": 123,
"notify_issue_offset": 123,
"notify_expiry_offset": 123,
"notify_schedule_offset": 123,
"notify_issue_offset_days": 123,
"notify_issue_offset_hour": 123,
"notify_remind_offset_days": 123,
"notify_remind_offset_hour": 123,
"notify_extend_offset_days": 123,
"notify_extend_offset_hour": 123,
"internal_notes": "<string>",
"type": "<string>",
"value": 123,
"max_value": 123,
"is_extendable": true,
"is_assignable": true,
"is_reassignable": true,
"is_published": true,
"extend_days": 123,
"extend_days_condition": [
"<unknown>"
],
"tags": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}Body
application/json
Available options:
activation, anniversary, birthday, bonus, campaign, customer-service, reactivation, spend, staff, system-adjustment, tier, achievement, status, points, referral, other Pattern:
^[A-Z]+$Available options:
days, weeks, months, years, absolute_date, absolute_week, absolute_month Response
RewardDefinition
Show child attributes
Show child attributes
⌘I