- Admins
- AppSettings
- Blacklist
- ChatRecord
- CityLocation
- Goods
- HomeLocation
- Inventories
- ItemBlocks
- ItemIcons
- LandClaims
- Localization
- Locations
- Map
- Permissions
- Players
- PointsInfo
- Server
- TeleRecord
- Whitelist
- Settings
- AutoBackup
- CommandList
- ItemList
- VipGift
- PlayerSkills
- UiIcons
- Auth
- ColoredChat
- Prefab
通过Id获取记录
GET
/api/PointsInfo/{id}
PointsInfo
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
id
string
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://7dtdserver.local:8888/api/PointsInfo/'
返回响应
🟢200成功
application/json
Body
积分信息
id
string
Id
createdAt
string <date-time>
创建日期
playerName
string | null
玩家名称
points
integer <int32>
拥有积分
lastSignInAt
string <date-time> | null
上次签到日期
示例
{
"id": "string",
"createdAt": "2019-08-24T14:15:22Z",
"playerName": "string",
"points": 0,
"lastSignInAt": "2019-08-24T14:15:22Z"
}
修改于 2024-12-09 01:52:42