- sso
- admin
- applications
- auth
- auth-eth
- access
- newsletter
- user
- wallet
- Get API versionGET
auth-me
GET
https://sso.dlab.ovh/api/auth/@
Request
Header Params
Authorization
string
required
Example:
Bearer {{token}}
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://sso.dlab.ovh/api/auth/@' \
--header 'Authorization: Bearer '
Responses
🟢200success
application/json
Body
id
integer
required
email
string
required
identifier
string
required
role
object
required
role
string
required
isStaff
boolean
required
access
object
required
whitelist
object
required
earlyAccess
object
required
wallets
object
required
ethWallet
string | null
required
createdAt
string
required
updatedAt
string
required
Example
{
"id": 1,
"email": "kevin@rct.ai",
"identifier": "f3806ab7-eb3e-4bd7-baeb-5edb55e4c3f0",
"role": {
"role": "admin",
"isStaff": true
},
"access": {
"whitelist": {
"authorized": true,
"attributes": {
"isWhitelisted": false,
"isStaff": true,
"isOpen": false
}
},
"earlyAccess": {
"authorized": true,
"attributes": {
"isEATester": false,
"isStaff": true,
"isOpen": true
}
}
},
"wallets": {
"ethWallet": null
},
"createdAt": "2022-04-24T11:16:32.000Z",
"updatedAt": "2022-05-06T08:19:31.000Z"
}