- Returning.AI
- Auth
- User
- Server
- Category
- Role
- Channel
- Language Setting
- Leaderboard
- Badge
- Gamification
- Api Token
- Custom Userfields
- Integration
set tier setting
Developing
POST
/gamifications/{serverId}/tier-setting
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
serverId
string
required
Example:
{{serverId}}
Body Params application/json
enabled
boolean
required
display
object
required
levels
boolean
required
tiers
boolean
required
Example
{
"enabled": true,
"display": {
"levels": true,
"tiers": true
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://api.returning.ai/api/v1/gamifications//tier-setting' \
--header 'Content-Type: application/json' \
--data-raw '{
"enabled": true,
"display": {
"levels": true,
"tiers": true
}
}'
Responses
🟢200Success
application/json
Body
meta
object
required
success
boolean
required
message
string
required
devMessage
string
required
body
object
required
_id
string
optional
serverId
string
optional
__v
integer
optional
createdAt
string
optional
updatedAt
string
optional
xpSetting
object
optional
tiers
object
required
badges
object
optional
Example
{
"meta": {
"success": true,
"message": "XP Setting has been updated successfully",
"devMessage": "XP Setting has been updated successfully"
},
"body": {
"_id": "669e2a35d697876b6ff8dfc6",
"serverId": "669b462658695ff095d431af",
"__v": 0,
"createdAt": "2024-07-22T09:45:25.249Z",
"updatedAt": "2024-07-25T17:20:11.199Z",
"xpSetting": {
"enabled": true,
"picture": {
"enabled": false,
"xp": 3
},
"aboutme": {
"enabled": false,
"xp": 3
},
"quote": {
"enabled": false,
"xp": 3
},
"message": {
"enabled": true,
"xp": 10,
"time": 3
},
"reply": {
"enabled": true,
"xp": 10,
"time": 3
},
"react": {
"enabled": true,
"xp": 2,
"time": 1
},
"object": {
"enabled": true,
"xp": 30,
"time": 3
},
"analysis": {
"enabled": true,
"xp": 50,
"time": 3
},
"visit": {
"enabled": true,
"xp": 10
},
"referral": {
"enabled": false,
"xp": 3
},
"comment": {
"enabled": true,
"xp": 20,
"time": 3
},
"refer": {
"enabled": false,
"xp": 100
},
"tradingDiscussions": {
"enabled": true,
"xp": 20,
"time": 3
}
},
"tiers": {
"values": [],
"enabled": true,
"display": {
"levels": true,
"tiers": true
}
},
"badges": {
"values": [
{
"title": "Major",
"action": "custom",
"quantity": "3",
"description": "One trade on a live account that makes 30%. Send account statement to #Tickmill-badge channel",
"attachRequired": "true",
"awarded": "true",
"id": "26db52f5-a9df-420a-90cf-87a76c2683a8",
"image": "https://chartsnapshot.s3.amazonaws.com/apireturningai/tester/1721891103626-d763c952a89131696dd3bdf79fa0108.png"
},
{
"title": "Major",
"action": "custom",
"quantity": "3",
"description": "One trade on a live account that makes 30%. Send account statement to #Tickmill-badge channel",
"attachRequired": "true",
"awarded": "true",
"id": "35ce9dd2-2dc0-4eb5-9dc1-1aeea9c11b3f",
"image": "https://chartsnapshot.s3.amazonaws.com/apireturningai/tester/1721871978683-d763c952a89131696dd3bdf79fa0108.png"
}
]
}
}
}
Modified at 2024-07-27 17:05:47