The /v2/account endpoint should be expanded to specify the account's WvW guild, in line with the recent restructuring.
Example new output, with fake JSON comments to clarify:
{
"id": "ACCOUNT_UUID",
"name": "Example.1234",
"age": 12345678,
"world": 1234, /* Obsolete but kept for backwards compatibility */
"guilds": [
"GUILD_UUID_1",
"GUILD_UUID_2",
"GUILD_UUID_3"
],
"wvw_guild": "GUILD_UUID_2", /* New. Always one of the UUIDs in the guilds array. */
"created": "2020-01-01T00:00:00Z",
"access": [
"GuildWars2",
"HeartOfThorns",
"PlayForFree",
"PathOfFire",
"EndOfDragons"
],
"commander": true
}
The
/v2/accountendpoint should be expanded to specify the account's WvW guild, in line with the recent restructuring.Example new output, with fake JSON comments to clarify:
{ "id": "ACCOUNT_UUID", "name": "Example.1234", "age": 12345678, "world": 1234, /* Obsolete but kept for backwards compatibility */ "guilds": [ "GUILD_UUID_1", "GUILD_UUID_2", "GUILD_UUID_3" ], "wvw_guild": "GUILD_UUID_2", /* New. Always one of the UUIDs in the guilds array. */ "created": "2020-01-01T00:00:00Z", "access": [ "GuildWars2", "HeartOfThorns", "PlayForFree", "PathOfFire", "EndOfDragons" ], "commander": true }