Skip to content

Commit 566e6d6

Browse files
committed
Add endpoint for manual update forced
1 parent 66bab0f commit 566e6d6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/XIVAPI/Api/PrivateApi.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@ public function manualItemUpdate(string $accessKey, int $itemId, string $server)
2121
]);
2222
}
2323

24+
/**
25+
* Request an item to be updated
26+
*/
27+
public function manualItemUpdateForce(string $accessKey, int $itemId, string $server)
28+
{
29+
return Guzzle::get("/private/market/item/update/requested", [
30+
RequestOptions::QUERY => [
31+
'access' => $accessKey,
32+
'item_id' => $itemId,
33+
'server' => $server,
34+
]
35+
]);
36+
}
37+
2438
/**
2539
* Request an item to be updated
2640
*/

0 commit comments

Comments
 (0)