Get linked Java account from Bedrock xuid
GET/v2/link/bedrock/:xuid
Get linked Java account from Bedrock xuid
Request
Path Parameters
xuid stringrequired
Bedrock xuid
Example: 2535432196048835
Responses
- 200
- 400
Linked accounts or an empty object if there is no account linked
- application/json
- Schema
- Example (from schema)
Schema
bedrock_id int64required
xuid of the Bedrock player
java_id uuidrequired
UUID of the Java player
java_name stringrequired
Username of the Java player
last_name_update int64required
Unix millis of the last Java name update check
{
"bedrock_id": 2535432196048835,
"java_id": "d34eb447-6e90-4c78-9281-600df88aef1d",
"java_name": "Tim203",
"last_name_update": 0
}
No xuid provided or invalid
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
The error message
{
"message": "string"
}
Loading...