List reward catalog
curl --request GET \
--url https://api.zupy.com/api/v2/rewards/ \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.zupy.com/api/v2/rewards/"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.zupy.com/api/v2/rewards/', 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.zupy.com/api/v2/rewards/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.zupy.com/api/v2/rewards/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zupy.com/api/v2/rewards/")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zupy.com/api/v2/rewards/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"points_required": 123,
"monetary_value": "<string>",
"validity_days": 123,
"is_available": "<string>",
"quantity_available": 123,
"quantity_redeemed": 123,
"discount_percentage": "<string>",
"discount_fixed_amount": "<string>",
"maximum_discount_value": "<string>",
"image_url": "<string>",
"program_id": "<string>",
"program_name": "<string>",
"is_active": true,
"already_redeemed": false,
"start_date": "2023-11-07T05:31:56Z",
"end_date": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"settlement_budget": "<string>",
"customer_split_pct": "<string>",
"operator_split_pct": "<string>",
"publisher_split_pct": "<string>",
"sharer_split_pct": "<string>",
"z_distributed_total": "<string>",
"origin_type": "<string>",
"budget_mode": "<string>",
"campaign_status": "<string>",
"campaign_operator_id": "<string>",
"campaign_operator_name": "<string>"
}
],
"meta": {
"cursor": "<string>",
"has_next": true,
"count": 123
}
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Rewards
List reward catalog
List available rewards for the company. Optionally filter by redeemability for a specific customer.
GET
/
api
/
v2
/
rewards
/
List reward catalog
curl --request GET \
--url https://api.zupy.com/api/v2/rewards/ \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.zupy.com/api/v2/rewards/"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.zupy.com/api/v2/rewards/', 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.zupy.com/api/v2/rewards/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.zupy.com/api/v2/rewards/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zupy.com/api/v2/rewards/")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zupy.com/api/v2/rewards/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"points_required": 123,
"monetary_value": "<string>",
"validity_days": 123,
"is_available": "<string>",
"quantity_available": 123,
"quantity_redeemed": 123,
"discount_percentage": "<string>",
"discount_fixed_amount": "<string>",
"maximum_discount_value": "<string>",
"image_url": "<string>",
"program_id": "<string>",
"program_name": "<string>",
"is_active": true,
"already_redeemed": false,
"start_date": "2023-11-07T05:31:56Z",
"end_date": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"settlement_budget": "<string>",
"customer_split_pct": "<string>",
"operator_split_pct": "<string>",
"publisher_split_pct": "<string>",
"sharer_split_pct": "<string>",
"z_distributed_total": "<string>",
"origin_type": "<string>",
"budget_mode": "<string>",
"campaign_status": "<string>",
"campaign_operator_id": "<string>",
"campaign_operator_name": "<string>"
}
],
"meta": {
"cursor": "<string>",
"has_next": true,
"count": 123
}
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Authorizations
Per-company partner API key (zupy_pk_…). Validated by Zupy against the company integration key hash (Story 14.x); send it on every request as the X-API-Key header. Scoped read-write to the owning company's data.
Query Parameters
Pagination cursor value from previous response.
Customer KSUID — required when redeemable=true. Also annotates already_redeemed flag on each reward.
Number of results to return per page.
Filter to rewards the customer can redeem (has enough points and hasn't hit redemption limit). Requires customer_id.
⌘I