|
1 | | - |
2 | | - |
3 | 1 | # Batches Methods |
4 | 2 |
|
5 | | -| Method | HTTP request | Description | |
6 | | -|--------|--------------|-------------| |
7 | | -| [**AddToBatch**](BatchesApi.md#addtobatch) | **POST** /v1/batches/{batch_id}/add | Add to a Batch | |
8 | | -| [**CreateBatch**](BatchesApi.md#createbatch) | **POST** /v1/batches | Create A Batch | |
9 | | -| [**DeleteBatch**](BatchesApi.md#deletebatch) | **DELETE** /v1/batches/{batch_id} | Delete Batch By Id | |
10 | | -| [**GetBatchByExternalId**](BatchesApi.md#getbatchbyexternalid) | **GET** /v1/batches/external_batch_id/{external_batch_id} | Get Batch By External ID | |
11 | | -| [**GetBatchById**](BatchesApi.md#getbatchbyid) | **GET** /v1/batches/{batch_id} | Get Batch By ID | |
12 | | -| [**ListBatchErrors**](BatchesApi.md#listbatcherrors) | **GET** /v1/batches/{batch_id}/errors | Get Batch Errors | |
13 | | -| [**ListBatches**](BatchesApi.md#listbatches) | **GET** /v1/batches | List Batches | |
14 | | -| [**ProcessBatch**](BatchesApi.md#processbatch) | **POST** /v1/batches/{batch_id}/process/labels | Process Batch ID Labels | |
15 | | -| [**RemoveFromBatch**](BatchesApi.md#removefrombatch) | **POST** /v1/batches/{batch_id}/remove | Remove From Batch | |
16 | | -| [**UpdateBatch**](BatchesApi.md#updatebatch) | **PUT** /v1/batches/{batch_id} | Update Batch By Id | |
| 3 | +| Method | Description | |
| 4 | +|--------|-------------| |
| 5 | +| [**AddToBatch**](BatchesApi.md#addtobatch) | Add to a Batch | |
| 6 | +| [**CreateBatch**](BatchesApi.md#createbatch) | Create A Batch | |
| 7 | +| [**DeleteBatch**](BatchesApi.md#deletebatch) | Delete Batch By Id | |
| 8 | +| [**GetBatchByExternalId**](BatchesApi.md#getbatchbyexternalid) | Get Batch By External ID | |
| 9 | +| [**GetBatchById**](BatchesApi.md#getbatchbyid) | Get Batch By ID | |
| 10 | +| [**ListBatchErrors**](BatchesApi.md#listbatcherrors) | Get Batch Errors | |
| 11 | +| [**ListBatches**](BatchesApi.md#listbatches) | List Batches | |
| 12 | +| [**ProcessBatch**](BatchesApi.md#processbatch) | Process Batch ID Labels | |
| 13 | +| [**RemoveFromBatch**](BatchesApi.md#removefrombatch) | Remove From Batch | |
| 14 | +| [**UpdateBatch**](BatchesApi.md#updatebatch) | Update Batch By Id | |
17 | 15 |
|
18 | 16 | <a id="addtobatch"></a> |
19 | 17 | # **AddToBatch** |
20 | 18 | ```csharp |
21 | | -string AddToBatch (AddToBatchRequestBody addToBatchRequestBodystring batchId, CancellationToken cancellationToken = default) |
| 19 | +string AddToBatch (AddToBatchRequestBody addToBatchRequestBody, string batchId, CancellationToken cancellationToken = default) |
22 | 20 |
|
23 | | -string AddToBatch (HttpClient methodClient, AddToBatchRequestBody addToBatchRequestBodystring batchId, CancellationToken cancellationToken = default) |
| 21 | +string AddToBatch (HttpClient methodClient, AddToBatchRequestBody addToBatchRequestBody, string batchId, CancellationToken cancellationToken = default) |
24 | 22 | ``` |
25 | 23 |
|
26 | 24 | Add to a Batch |
@@ -310,9 +308,9 @@ namespace Example |
310 | 308 | <a id="listbatcherrors"></a> |
311 | 309 | # **ListBatchErrors** |
312 | 310 | ```csharp |
313 | | -ListBatchErrorsResponseBody ListBatchErrors (string batchIdint pagesize = nullint page = null, CancellationToken cancellationToken = default) |
| 311 | +ListBatchErrorsResponseBody ListBatchErrors (string batchId, int pagesize = null, int page = null, CancellationToken cancellationToken = default) |
314 | 312 |
|
315 | | -ListBatchErrorsResponseBody ListBatchErrors (HttpClient methodClient, string batchIdint pagesize = nullint page = null, CancellationToken cancellationToken = default) |
| 313 | +ListBatchErrorsResponseBody ListBatchErrors (HttpClient methodClient, string batchId, int pagesize = null, int page = null, CancellationToken cancellationToken = default) |
316 | 314 | ``` |
317 | 315 |
|
318 | 316 | Get Batch Errors |
@@ -372,9 +370,9 @@ namespace Example |
372 | 370 | <a id="listbatches"></a> |
373 | 371 | # **ListBatches** |
374 | 372 | ```csharp |
375 | | -ListBatchesResponseBody ListBatches (BatchStatus status = nullBatchesSortBy sortBy = nullSortDir sortDir = nullstring batchNumber = nullint page = nullint pageSize = null, CancellationToken cancellationToken = default) |
| 373 | +ListBatchesResponseBody ListBatches (BatchStatus status = null, BatchesSortBy sortBy = null, SortDir sortDir = null, string batchNumber = null, int page = null, int pageSize = null, CancellationToken cancellationToken = default) |
376 | 374 |
|
377 | | -ListBatchesResponseBody ListBatches (HttpClient methodClient, BatchStatus status = nullBatchesSortBy sortBy = nullSortDir sortDir = nullstring batchNumber = nullint page = nullint pageSize = null, CancellationToken cancellationToken = default) |
| 375 | +ListBatchesResponseBody ListBatches (HttpClient methodClient, BatchStatus status = null, BatchesSortBy sortBy = null, SortDir sortDir = null, string batchNumber = null, int page = null, int pageSize = null, CancellationToken cancellationToken = default) |
378 | 376 | ``` |
379 | 377 |
|
380 | 378 | List Batches |
@@ -440,9 +438,9 @@ namespace Example |
440 | 438 | <a id="processbatch"></a> |
441 | 439 | # **ProcessBatch** |
442 | 440 | ```csharp |
443 | | -string ProcessBatch (ProcessBatchRequestBody processBatchRequestBodystring batchId, CancellationToken cancellationToken = default) |
| 441 | +string ProcessBatch (ProcessBatchRequestBody processBatchRequestBody, string batchId, CancellationToken cancellationToken = default) |
444 | 442 |
|
445 | | -string ProcessBatch (HttpClient methodClient, ProcessBatchRequestBody processBatchRequestBodystring batchId, CancellationToken cancellationToken = default) |
| 443 | +string ProcessBatch (HttpClient methodClient, ProcessBatchRequestBody processBatchRequestBody, string batchId, CancellationToken cancellationToken = default) |
446 | 444 | ``` |
447 | 445 |
|
448 | 446 | Process Batch ID Labels |
@@ -500,9 +498,9 @@ namespace Example |
500 | 498 | <a id="removefrombatch"></a> |
501 | 499 | # **RemoveFromBatch** |
502 | 500 | ```csharp |
503 | | -string RemoveFromBatch (RemoveFromBatchRequestBody removeFromBatchRequestBodystring batchId, CancellationToken cancellationToken = default) |
| 501 | +string RemoveFromBatch (RemoveFromBatchRequestBody removeFromBatchRequestBody, string batchId, CancellationToken cancellationToken = default) |
504 | 502 |
|
505 | | -string RemoveFromBatch (HttpClient methodClient, RemoveFromBatchRequestBody removeFromBatchRequestBodystring batchId, CancellationToken cancellationToken = default) |
| 503 | +string RemoveFromBatch (HttpClient methodClient, RemoveFromBatchRequestBody removeFromBatchRequestBody, string batchId, CancellationToken cancellationToken = default) |
506 | 504 | ``` |
507 | 505 |
|
508 | 506 | Remove From Batch |
|
0 commit comments