Skip to content

Latest commit

 

History

History
executable file
·
37 lines (23 loc) · 1.36 KB

File metadata and controls

executable file
·
37 lines (23 loc) · 1.36 KB

BulkPayableBatches

(bulkPayableBatches)

Available Operations

  • list - List bulk payable batches

list

List bulk payable batches

Example Usage

import { Wingspan } from "wingspan";
import { ListBulkPayableBatchesResponse } from "wingspan/dist/sdk/models/operations";

const sdk = new Wingspan();

sdk.bulkPayableBatches.list().then((res: ListBulkPayableBatchesResponse) => {
  if (res.statusCode == 200) {
    // handle response
  }
});

Parameters

Parameter Type Required Description
config AxiosRequestConfig Available config options for making requests.

Response

Promise<operations.ListBulkPayableBatchesResponse>