API:2/account/finishers

From Guild Wars 2 Wiki
< API:2‎ | account
Jump to navigationJump to search

/v2/account/finishers

HTTP method
GET
Format
json
API version
version 2
Release date
2016-05-24
Scope
account
unlocks
Optional
none

This resource returns information about finishers that are unlocked for an account.

Parameters

  • access_token (optional) – Can be used to specify an API key for the request if it is not given in the request header.

Response

This request will return an array of objects with the following properties:

  • id (integer) – The id of the finisher resolvable against /v2/finishers.
  • permanent (boolean) – Indicates if the finisher is permanent or temporary.
  • quantity (integer) – If permanent is false, this field will indicate the number of uses the finisher has remaining.

Example

Request

https://api.guildwars2.com/v2/account/finishers
Authorization: Bearer <API key>

Response

[
  {
    "id": 1,
    "permanent": true
  },
  {
    "id": 15,
    "permanent": false,
    "quantity": 5
  }
]