- Returning.AI
- Auth
- User
- Server
- Category
- Role
- Channel
- Language Setting
- Leaderboard
- Badge
- Gamification
- Api Token
- Custom Userfields
- Integration
remove badge from user
Developing
POST
/badges/{id}/remove
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Example:
b3df14ee-a674-480b-be2a-3f32c9d3a1d9
Body Params application/json
serverId
string
required
userId
string
required
Example
{
"serverId": "{{serverId}}",
"userId": "1"
}
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 --request POST 'https://api.returning.ai/api/v1/badges/b3df14ee-a674-480b-be2a-3f32c9d3a1d9/remove' \
--header 'Content-Type: application/json' \
--data-raw '{
"serverId": "",
"userId": "1"
}'
Responses
🟢200Success
application/json
Body
meta
object
required
success
boolean
required
message
string
required
devMessage
string
required
body
array[string]
required
Example
{
"meta": {
"success": true,
"message": "Badge has been removed successfully",
"devMessage": "Badge has been removed successfully"
},
"body": []
}
Modified at 2024-07-30 05:42:36