- 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
获取指定玩家的领地石
GET
/api/LandClaims/{playerId}
LandClaims
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
playerId
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/LandClaims/'
返回响应
🟢200成功
application/json
Body
领地石所有者
playerId
string
可选
playerName
string
可选
entityId
integer <int32>
可选
默认值:
-1
platformId
string
可选
claimActive
boolean
可选
lastLogin
string <date-time>
可选
claimPositions
array[object (Position) {3}]
可选
x
integer <int32>
X
y
integer <int32>
Y
z
integer <int32>
Z
示例
{
"playerId": "string",
"playerName": "string",
"entityId": -1,
"platformId": "string",
"claimActive": true,
"lastLogin": "2019-08-24T14:15:22Z",
"claimPositions": [
{
"x": 0,
"y": 0,
"z": 0
}
]
}
修改于 2024-12-09 01:52:42