Get all rewardTypes
GET/rewardTypes
Get all rewardTypes
Request
Query Parameters
Search for rewardTypes by name
Search by start date
Search by end date
Possible values: >= 1
Default value: 1
Specify the page number for pagination (default is 1).
Default value: 10
Specify the number of rewardTypes per page (default is 10, 0 gets all results).
Possible values: [createdAt
, name
, category
]
Field to order the results by, default is 'createdAt'.
Possible values: [asc
, desc
]
Default value: desc
'asc' for ascending or 'desc' for descending order. Default is 'desc'.
Responses
- 200
- 500
rewardTypes retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
The date and time when the reward type was created.
JSON string containing metadata, actions, and functions associated with the reward.
Title of the reward type.
Boolean to specify if the rewardType can reeemed once.
Name of the reward type.
Unique identifier for RewardType
Category of the reward type.
Detailed description of the reward type.
URL of the thumbnail for the reward type.
[
{
"data": "{\"validity\": \"30 days\", \"features\": [\"no ads\", \"exclusive content\"]}",
"title": "One Month Premium Subscription",
"createdAt": "2023-10-23T10:00:00Z",
"thumbnail": "https://example.com/thumbnail.png",
"description": "This reward gives you access to premium features for one month.",
"category": "Digital Goods",
"singleUse": true,
"id": "RdTH7lpED",
"name": "Premium Subscription"
},
{
"thumbnail": "https://example.com/thumbnail.png",
"description": "This reward provides a $50 gift card for use on our platform.",
"category": "Physical Goods",
"name": "Gift Card",
"id": "RgyXrhXZy",
"singleUse": false,
"title": "$50 Gift Card",
"data": "{\"validity\": \"No expiration\", \"features\": [\"can be used multiple times\"]}",
"createdAt": "2023-11-01T12:30:00Z"
}
]
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Internal Server Error"
}