Skip to content

Commit

Permalink
Add endpoint for manual update forced
Browse files Browse the repository at this point in the history
  • Loading branch information
vekien committed May 4, 2019
1 parent 66bab0f commit 566e6d6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/XIVAPI/Api/PrivateApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ public function manualItemUpdate(string $accessKey, int $itemId, string $server)
]);
}

/**
* Request an item to be updated
*/
public function manualItemUpdateForce(string $accessKey, int $itemId, string $server)
{
return Guzzle::get("/private/market/item/update/requested", [
RequestOptions::QUERY => [
'access' => $accessKey,
'item_id' => $itemId,
'server' => $server,
]
]);
}

/**
* Request an item to be updated
*/
Expand Down

0 comments on commit 566e6d6

Please sign in to comment.