Get a reward by ID
GEThttps://api.playmakers.co/reward/:rewardId
Get a reward by ID
Request
Path Parameters
The unique identifier for the reward
Responses
- 200
- 403
- 404
- 500
Reward retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Possible values: <= 32 characters
Name of the reward
Number of times this reward has been redeemed.
ID of the project associated with the reward
Unique identifier for Reward
Optional URL for the reward's thumbnail image.
Expiration date for special rewards
Maximum allowed number of times for the reward to be redeemed by a single user
Unique identifier for RewardType
Time representation of entity creation
Number of times this reward has been redeemed by the current user.
Additional JSON metadata for triggers, actions or general easy-access data
Detailed description of the reward
Possible values: <= 1000000
Points required to claim the reward
The order in which the reward should be displayed
Maximum number of times this reward can be redeemed.
{
"name": "Amazon gift card",
"userRewardCount": 1,
"projectId": "pGdouyKfY",
"id": "r3b19Z1n",
"thumbnail": "https://file.playmakers.co/r15Y7T4sM/r15Y7T4sM_thumbnail.png",
"expiresAt": "2025-01-01T09:00:00.00Z",
"userRewardsLimit": 3,
"rewardTypeId": "R3b19Z1n",
"createdAt": "2024-01-01T09:00:00.00Z",
"myUserRewardCount": 2,
"data": "{\"criteria\": \"complete_all_adventure_quests\", \"icon\": \"explorer_badge_icon.png\"}",
"description": "By completing the quest you're awarded with a shimmery golden badge",
"requiredPoints": 10,
"rankOrder": 1,
"maxClaims": null
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Forbidden access"
}
NotFound
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "A mandatory item was not found"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Internal Server Error"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://api.playmakers.co/reward/:rewardId' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'