readInventoryAdjustment method
Returns the InventoryAdjustment object with the provided adjustment_id.
Implementation
Future<InventoryAdjustment> readInventoryAdjustment({
required String adjustmentId,
String? authToken,
}) async {
authToken ??= authenticationService.getCachedToken()?.accessToken;
Map<String, String> headers = {
"Authorization": "Bearer ${authToken ?? ""}",
'Content-Type': 'application/json; charset=UTF-8',
'Accept': 'application/json',
};
Uri endpoint = Uri.https(
baseUrl, "/v2/inventory/adjustments/$adjustmentId");
//print (endpoint.toString());
var response = await
http.get(endpoint, headers: headers);
if (response.statusCode == 200) {
print (jsonDecode(response.body));
return InventoryAdjustmentResponse.fromJson(jsonDecode(response.body)).adjustment!;
}
else {
print (response.body);
throw InventoryException(statusCode: response.statusCode, message: InventoryAdjustmentResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}