- 项目介绍
- 用户协议
- 隐私政策
- SuperDungeon
- EggyByte
- Account
- Game
- Test
- Crypto
- Ad
- User
- Admin
- Database
- Mailing
- ThirdParty
- Untitled EndpointGET
- Untitled EndpointPOST
- SetupPOST
- Create DatabasePOST
- Get CardGET
- Create QuestionPOST
- Create CollectionPOST
- Get DashboardsGET
- Get DashboardGET
- Get Dashboard CopyPOST
- Untitled EndpointGET
Setup
Developing
POST
http://localhost:63858/api/setup
Request
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json
object {0}
Example
{
"invite": {
"email": "eggybyte@gmail.com",
"first_name": "光耀",
"last_name": "冯"
},
"prefs": {
"site_locale": "cn",
"site_name": "上海旦享计算机科技有限责任公司"
},
"token": "",
"user": {
"email": "eggybyte@gmail.com",
"first_name": "光耀",
"last_name": "冯"
"password": "Fgy_0304103518"
}
}
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 'http://localhost:63858/api/setup' \
--header 'Content-Type: application/json' \
--data-raw '{
"invite": {
"email": "eggybyte@gmail.com",
"first_name": "光耀",
"last_name": "冯"
},
"prefs": {
"site_locale": "cn",
"site_name": "上海旦享计算机科技有限责任公司"
},
"token": "",
"user": {
"email": "eggybyte@gmail.com",
"first_name": "光耀",
"last_name": "冯"
"password": "Fgy_0304103518"
}
}'
Responses
🟢200成功
application/json
Body
object {0}
Example
{}
Modified at 2025-03-15 19:43:47