Skip to content

Latest commit

 

History

History
141 lines (103 loc) · 5.57 KB

payouts.md

File metadata and controls

141 lines (103 loc) · 5.57 KB

Payouts

PayoutsApi payoutsApi = client.getPayoutsApi();

Class Name

PayoutsApi

Methods

List Payouts

Retrieves a list of all payouts for the default location. You can filter payouts by location ID, status, time range, and order them in ascending or descending order. To call this endpoint, set PAYOUTS_READ for the OAuth scope.

CompletableFuture<ListPayoutsResponse> listPayoutsAsync(
    final String locationId,
    final String status,
    final String beginTime,
    final String endTime,
    final String sortOrder,
    final String cursor,
    final Integer limit)

Parameters

Parameter Type Tags Description
locationId String Query, Optional The ID of the location for which to list the payouts.
By default, payouts are returned for the default (main) location associated with the seller.
status String Query, Optional If provided, only payouts with the given status are returned.
beginTime String Query, Optional The timestamp for the beginning of the payout creation time, in RFC 3339 format.
Inclusive. Default: The current time minus one year.
endTime String Query, Optional The timestamp for the end of the payout creation time, in RFC 3339 format.
Default: The current time.
sortOrder String Query, Optional The order in which payouts are listed.
cursor String Query, Optional A pagination cursor returned by a previous call to this endpoint.
Provide this cursor to retrieve the next set of results for the original query.
For more information, see Pagination.
If request parameters change between requests, subsequent results may contain duplicates or missing records.
limit Integer Query, Optional The maximum number of results to be returned in a single page.
It is possible to receive fewer results than the specified limit on a given page.
The default value of 100 is also the maximum allowed value. If the provided value is
greater than 100, it is ignored and the default value is used instead.
Default: 100

Response Type

ListPayoutsResponse

Example Usage

payoutsApi.listPayoutsAsync(null, null, null, null, null, null, null).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Get Payout

Retrieves details of a specific payout identified by a payout ID. To call this endpoint, set PAYOUTS_READ for the OAuth scope.

CompletableFuture<GetPayoutResponse> getPayoutAsync(
    final String payoutId)

Parameters

Parameter Type Tags Description
payoutId String Template, Required The ID of the payout to retrieve the information for.

Response Type

GetPayoutResponse

Example Usage

String payoutId = "payout_id6";

payoutsApi.getPayoutAsync(payoutId).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

List Payout Entries

Retrieves a list of all payout entries for a specific payout. To call this endpoint, set PAYOUTS_READ for the OAuth scope.

CompletableFuture<ListPayoutEntriesResponse> listPayoutEntriesAsync(
    final String payoutId,
    final String sortOrder,
    final String cursor,
    final Integer limit)

Parameters

Parameter Type Tags Description
payoutId String Template, Required The ID of the payout to retrieve the information for.
sortOrder String Query, Optional The order in which payout entries are listed.
cursor String Query, Optional A pagination cursor returned by a previous call to this endpoint.
Provide this cursor to retrieve the next set of results for the original query.
For more information, see Pagination.
If request parameters change between requests, subsequent results may contain duplicates or missing records.
limit Integer Query, Optional The maximum number of results to be returned in a single page.
It is possible to receive fewer results than the specified limit on a given page.
The default value of 100 is also the maximum allowed value. If the provided value is
greater than 100, it is ignored and the default value is used instead.
Default: 100

Response Type

ListPayoutEntriesResponse

Example Usage

String payoutId = "payout_id6";

payoutsApi.listPayoutEntriesAsync(payoutId, null, null, null).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});