All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| getPayoutReport3Details | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/details | |
| getPayoutReport3Overview | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/overview | |
| getPayoutReport3RefundedOrders | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/refundedOrders | |
| getPayoutReport3Stores | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/stores | |
| payoutReport3ExportPayoutChargebacks | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/export/chargebacks | |
| payoutReport3ExportPayoutOrders | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/export/orders | |
| payoutReport3ExportPayoutPosSales | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/export/possales | |
| payoutReport3ExportPayoutRefundedOrders | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/export/refundedOrders | |
| payoutReport3ExportPayoutStores | GET /api/v1.0/{appId}/reporting/reports/payouts3/{bankAccountId}/{payoutId}/export/stores |
RestApiResultPayoutReport3Details getPayoutReport3Details(appId, bankAccountId, payoutId, storeIds)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
List<Integer> storeIds = Arrays.asList(56); // List<Integer> |
try {
RestApiResultPayoutReport3Details result = apiInstance.getPayoutReport3Details(appId, bankAccountId, payoutId, storeIds);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#getPayoutReport3Details");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer | ||
| storeIds | List<Integer> | [optional] |
RestApiResultPayoutReport3Details
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultPayoutReport3Overview getPayoutReport3Overview(appId, bankAccountId, payoutId)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
try {
RestApiResultPayoutReport3Overview result = apiInstance.getPayoutReport3Overview(appId, bankAccountId, payoutId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#getPayoutReport3Overview");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer |
RestApiResultPayoutReport3Overview
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiPaginationResultPayoutReport3RefundedOrder getPayoutReport3RefundedOrders(appId, bankAccountId, payoutId, storeIds, page, limit)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
List<Integer> storeIds = Arrays.asList(56); // List<Integer> |
Integer page = 56; // Integer |
Integer limit = 56; // Integer |
try {
RestApiPaginationResultPayoutReport3RefundedOrder result = apiInstance.getPayoutReport3RefundedOrders(appId, bankAccountId, payoutId, storeIds, page, limit);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#getPayoutReport3RefundedOrders");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer | ||
| storeIds | List<Integer> | [optional] | |
| page | Integer | [optional] | |
| limit | Integer | [optional] |
RestApiPaginationResultPayoutReport3RefundedOrder
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultPayoutReport3StorePayouts getPayoutReport3Stores(appId, bankAccountId, payoutId, stores)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
List<Integer> stores = Arrays.asList(56); // List<Integer> |
try {
RestApiResultPayoutReport3StorePayouts result = apiInstance.getPayoutReport3Stores(appId, bankAccountId, payoutId, stores);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#getPayoutReport3Stores");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer | ||
| stores | List<Integer> | [optional] |
RestApiResultPayoutReport3StorePayouts
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultFileCreationResult payoutReport3ExportPayoutChargebacks(appId, bankAccountId, payoutId, stores)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
List<Integer> stores = Arrays.asList(56); // List<Integer> |
try {
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutChargebacks(appId, bankAccountId, payoutId, stores);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutChargebacks");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer | ||
| stores | List<Integer> | [optional] |
RestApiResultFileCreationResult
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultFileCreationResult payoutReport3ExportPayoutOrders(appId, bankAccountId, payoutId, stores)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
List<Integer> stores = Arrays.asList(56); // List<Integer> |
try {
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutOrders(appId, bankAccountId, payoutId, stores);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutOrders");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer | ||
| stores | List<Integer> | [optional] |
RestApiResultFileCreationResult
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultFileCreationResult payoutReport3ExportPayoutPosSales(appId, bankAccountId, payoutId, stores)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
List<Integer> stores = Arrays.asList(56); // List<Integer> |
try {
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutPosSales(appId, bankAccountId, payoutId, stores);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutPosSales");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer | ||
| stores | List<Integer> | [optional] |
RestApiResultFileCreationResult
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultFileCreationResult payoutReport3ExportPayoutRefundedOrders(appId, bankAccountId, payoutId, stores)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
List<Integer> stores = Arrays.asList(56); // List<Integer> |
try {
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutRefundedOrders(appId, bankAccountId, payoutId, stores);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutRefundedOrders");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer | ||
| stores | List<Integer> | [optional] |
RestApiResultFileCreationResult
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
RestApiResultFileCreationResult payoutReport3ExportPayoutStores(appId, bankAccountId, payoutId, stores)
// Import classes:
//import com.flipdish.apiclient.ApiClient;
//import com.flipdish.apiclient.ApiException;
//import com.flipdish.apiclient.Configuration;
//import com.flipdish.apiclient.auth.*;
//import com.flipdish.apiclient.api.PayoutReportsApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
PayoutReportsApi apiInstance = new PayoutReportsApi();
String appId = "appId_example"; // String |
Integer bankAccountId = 56; // Integer |
Integer payoutId = 56; // Integer |
List<Integer> stores = Arrays.asList(56); // List<Integer> |
try {
RestApiResultFileCreationResult result = apiInstance.payoutReport3ExportPayoutStores(appId, bankAccountId, payoutId, stores);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PayoutReportsApi#payoutReport3ExportPayoutStores");
e.printStackTrace();
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | String | ||
| bankAccountId | Integer | ||
| payoutId | Integer | ||
| stores | List<Integer> | [optional] |
RestApiResultFileCreationResult
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml