diff --git a/v2/account/dungeon.js b/v2/account/dungeon.js new file mode 100644 index 00000000..d2be5c6b --- /dev/null +++ b/v2/account/dungeon.js @@ -0,0 +1,29 @@ +// GET /v2/account/dungeon +// Authorization: Bearer oauth2-token +// Requires "account" scope. +// This exact format should also have an endpoint under character, for +// determining, e.g., which story mode unlocks are needed per character. +{ + "Ascalonian Catacombs": { // Name of dungeon + "Story": { // Path id, either "Story" or "Path X". Alternatively, "Hodgins" "Tzaark", etc. + "first": "", // Timestamp of when dungeon was first completed. + "last": "", // Timestamp of most recent completion. + "count": 4 // Total number of times dungeon has been completed. + }, + "Path 1": { + "first": ... + }, + ... + }, + "Twilight Arbor": { ... }, + ... + "Fractals Of The Mist": { // Fractals too! + "Scale 1:" { + "first": ... + }, + ..., + "Scale 50": { + ... + } + } +}