- Returning.AI
- Auth
- User
- Server
- Category
- Role
- Channel
- Language Setting
- Leaderboard
- Badge
- Gamification
- Api Token
- Custom Userfields
- Integration
get my servers
Developing
GET
/servers
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
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 GET 'https://api.returning.ai/api/v1/servers'
Responses
🟢200Success
application/json
Body
meta
object
required
success
boolean
required
message
string
required
devMessage
string
required
body
array [object {10}]
required
_id
string
optional
name
string
optional
image
string
optional
owner
object
optional
__v
integer
optional
roles
array[string]
optional
categories
array[string]
optional
leaderboards
array[string]
optional
languageSettings
array[string]
optional
id
string
optional
Example
{
"meta": {
"success": true,
"message": "My servers",
"devMessage": "My servers"
},
"body": [
{
"_id": "66a278272381a39bf731bf4e",
"name": "Galaxy Food And Drink",
"image": "https://chartsnapshot.s3.amazonaws.com/apireturningai/tester/1721923616255-d763c952a89131696dd3bdf79fa0108.png",
"owner": {
"id": "2"
},
"__v": 0,
"roles": [],
"categories": [],
"leaderboards": [],
"languageSettings": [],
"id": "66a278272381a39bf731bf4e"
}
]
}
Modified at 2024-07-24 07:22:00