API:2/wizardsvault/objectives
From Guild Wars 2 Wiki
< API:2 | wizardsvault
Jump to navigationJump to search
/v2/wizardsvault/objectives
- HTTP method
- GET
- Format
- json
- API version
- version 2
- Release date
- 2024-02-27
- Scope
- none
- Optional
- none
This resource returns all Wizard's Vault's objectives in the game.
Endpoints
- None - Request the list of all available objective
ids
when the root endpoint (v2/wizardsvault/objectives
) has been accessed. id
- (Optional) Request the objective for the specifiedid
when accessing the endpoint (v2/wizardsvault/objectives/id
). Cannot be used when specifying theid
orids
parameters.
Parameters
id
- (Optional) Request the objective for the specifiedid
. Cannot be used when specifying theid
endpoint orids
parameter.ids
- (Optional; Comma Delimited List|all) Request an array of objectives for the specifiedids
or all objectives. Cannot be used when using theid
endpoint orid
parameter.
Response
For each requested objective id, an object with the following properties is returned:
id
(number) - The ID of the objectivetitle
(string)track
(string)acclaim
(number)
Example
https://api.guildwars2.com/v2/wizardsvault/objectives?ids=229,231
[ { "id": 20, "title": "Perform 3 Combo Skills in Combat", "track": "PvE", "acclaim": 10 }, { "id": 229, "title": "Defeat Knaebelag the Terror and Complete the Fangs That Gnash Achievement", "track": "PvE", "acclaim": 500 } ]