@@ -6,6 +6,7 @@ Method | HTTP request | Description
66------------- | ------------- | -------------
77[ ** getPayoutReport3Details** ] ( PayoutReportsApi.md#getPayoutReport3Details ) | ** GET** /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/details |
88[ ** getPayoutReport3Overview** ] ( PayoutReportsApi.md#getPayoutReport3Overview ) | ** GET** /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/overview |
9+ [ ** getPayoutReport3PropertyDetails** ] ( PayoutReportsApi.md#getPayoutReport3PropertyDetails ) | ** GET** /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/properties |
910[ ** getPayoutReport3RefundedOrders** ] ( PayoutReportsApi.md#getPayoutReport3RefundedOrders ) | ** GET** /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/refundedOrders |
1011[ ** getPayoutReport3Stores** ] ( PayoutReportsApi.md#getPayoutReport3Stores ) | ** GET** /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/stores |
1112[ ** payoutReport3ExportPayoutChargebacks** ] ( PayoutReportsApi.md#payoutReport3ExportPayoutChargebacks ) | ** GET** /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/export/chargebacks |
@@ -122,6 +123,65 @@ Name | Type | Description | Notes
122123
123124[ oauth2] ( ../README.md#oauth2 )
124125
126+ ### HTTP request headers
127+
128+ - ** Content-Type** : Not defined
129+ - ** Accept** : application/json, text/json, application/xml, text/xml
130+
131+ <a name =" getPayoutReport3PropertyDetails " ></a >
132+ # ** getPayoutReport3PropertyDetails**
133+ > RestApiResultPayoutReport3PropertyDetails getPayoutReport3PropertyDetails(appId, bankAccountId, payoutId, propertyIds, storeIds)
134+
135+
136+
137+ ### Example
138+ ``` java
139+ // Import classes:
140+ // import com.flipdish.apiclient.ApiClient;
141+ // import com.flipdish.apiclient.ApiException;
142+ // import com.flipdish.apiclient.Configuration;
143+ // import com.flipdish.apiclient.auth.*;
144+ // import com.flipdish.apiclient.api.PayoutReportsApi;
145+
146+ ApiClient defaultClient = Configuration . getDefaultApiClient();
147+
148+ // Configure OAuth2 access token for authorization: oauth2
149+ OAuth oauth2 = (OAuth ) defaultClient. getAuthentication(" oauth2" );
150+ oauth2. setAccessToken(" YOUR ACCESS TOKEN" );
151+
152+ PayoutReportsApi apiInstance = new PayoutReportsApi ();
153+ String appId = " appId_example" ; // String |
154+ Integer bankAccountId = 56 ; // Integer |
155+ Integer payoutId = 56 ; // Integer |
156+ List<String > propertyIds = Arrays . asList(" propertyIds_example" ); // List<String> |
157+ List<Integer > storeIds = Arrays . asList(56 ); // List<Integer> |
158+ try {
159+ RestApiResultPayoutReport3PropertyDetails result = apiInstance. getPayoutReport3PropertyDetails(appId, bankAccountId, payoutId, propertyIds, storeIds);
160+ System . out. println(result);
161+ } catch (ApiException e) {
162+ System . err. println(" Exception when calling PayoutReportsApi#getPayoutReport3PropertyDetails" );
163+ e. printStackTrace();
164+ }
165+ ```
166+
167+ ### Parameters
168+
169+ Name | Type | Description | Notes
170+ ------------- | ------------- | ------------- | -------------
171+ ** appId** | ** String** | |
172+ ** bankAccountId** | ** Integer** | |
173+ ** payoutId** | ** Integer** | |
174+ ** propertyIds** | [ ** List< ; String> ; ** ] ( String.md ) | | [ optional]
175+ ** storeIds** | [ ** List< ; Integer> ; ** ] ( Integer.md ) | | [ optional]
176+
177+ ### Return type
178+
179+ [ ** RestApiResultPayoutReport3PropertyDetails** ] ( RestApiResultPayoutReport3PropertyDetails.md )
180+
181+ ### Authorization
182+
183+ [ oauth2] ( ../README.md#oauth2 )
184+
125185### HTTP request headers
126186
127187 - ** Content-Type** : Not defined
0 commit comments