batchInventoryChange method

Future<InventoryResponse> batchInventoryChange({
  1. required BatchInventoryChangeRequest request,
  2. String? authToken,
})

Applies adjustments and counts to the provided item quantities.

On success: returns the current calculated counts for all objects referenced in the request. On failure: returns a list of related errors.

Implementation

Future<InventoryResponse> batchInventoryChange({
  required BatchInventoryChangeRequest request,
  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/changes/batch-create");

  //print (endpoint.toString());

  var response = await
  http.post(endpoint, body: jsonEncode(request.toJson()), headers: headers);

  if (response.statusCode == 200) {
    print (jsonDecode(response.body));
    return InventoryResponse.fromJson(jsonDecode(response.body));
  }
  else {
    print (response.body);
    throw InventoryException(statusCode: response.statusCode, message: InventoryResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
  }
}