pullFromPostmaster function
Extract an item from the Postmaster, with whatever implications that may entail. You must have a valid Destiny account. You must also pass BOTH a reference AND an instance ID if it's an instanced item.
Implementation
Future<ServerResponse<int>> pullFromPostmaster(HttpClient http, DestinyPostmasterTransferRequest body) {
return http.request(new HttpClientConfig(
'POST',
"https://www.bungie.net/Platform/Destiny2/Actions/Items/PullFromPostmaster/",
null,
body
));
}