Skip to content

Latest commit

 

History

History
137 lines (94 loc) · 5.38 KB

payouts.md

File metadata and controls

137 lines (94 loc) · 5.38 KB

Payouts

payouts_api = client.payouts

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.

def list_payouts(location_id: nil,
                 status: nil,
                 begin_time: nil,
                 end_time: nil,
                 sort_order: nil,
                 cursor: nil,
                 limit: nil)

Parameters

Parameter Type Tags Description
location_id 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 (Payout Status) Query, Optional If provided, only payouts with the given status are returned.
begin_time 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.
end_time String Query, Optional The timestamp for the end of the payout creation time, in RFC 3339 format.
Default: The current time.
sort_order String (Sort Order) 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

This method returns a ApiResponse instance. The data property in this instance returns the response data which is of type List Payouts Response Hash.

Example Usage

result = payouts_api.list_payouts

if result.success?
  puts result.data
elsif result.error?
  warn result.errors
end

Get Payout

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

def get_payout(payout_id:)

Parameters

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

Response Type

This method returns a ApiResponse instance. The data property in this instance returns the response data which is of type Get Payout Response Hash.

Example Usage

payout_id = 'payout_id6'


result = payouts_api.get_payout(payout_id: payout_id)

if result.success?
  puts result.data
elsif result.error?
  warn result.errors
end

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.

def list_payout_entries(payout_id:,
                        sort_order: nil,
                        cursor: nil,
                        limit: nil)

Parameters

Parameter Type Tags Description
payout_id String Template, Required The ID of the payout to retrieve the information for.
sort_order String (Sort Order) 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

This method returns a ApiResponse instance. The data property in this instance returns the response data which is of type List Payout Entries Response Hash.

Example Usage

payout_id = 'payout_id6'


result = payouts_api.list_payout_entries(payout_id: payout_id)

if result.success?
  puts result.data
elsif result.error?
  warn result.errors
end