batchRetrieveOrders abstract method

  1. @POST('/v2/orders/batch-retrieve')
Future<BatchRetrieveOrdersResponse> batchRetrieveOrders({
  1. @Body() required BatchRetrieveOrdersRequest body,
})

Retrieves a set of orders by their IDs.

If a given order ID does not exist, the ID is ignored instead of generating an error.

Implementation

@POST('/v2/orders/batch-retrieve')
Future<BatchRetrieveOrdersResponse> batchRetrieveOrders({
  @Body() required BatchRetrieveOrdersRequest body,
});