getPurchaseOrderConfirmation method

Future<Response<Json>> getPurchaseOrderConfirmation({
  1. required String poNumber,
  2. Options? getPurchaseConfirmationOptions,
})

Implementation

Future<Response<Json>> getPurchaseOrderConfirmation({
  required String poNumber,
  Options? getPurchaseConfirmationOptions,
}) async {
  return await client.get<Json>(
    POEndpoints.purchaseOrderConfirmation,
    queryParameters: {'DocumentNumber': poNumber},
    options: getPurchaseConfirmationOptions,
  );
}