All URIs are relative to https://api.wall.et, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
countAdCreditsRedemptions() | POST /v2/pos/infogenesis/count/adCredits/redemptions | Count redeemed ad credits |
countAdCreditsRefunds() | POST /v2/pos/infogenesis/count/adCredits/refunds | Count refunded ad credits |
countDynamicVoucherRedemptions() | POST /v2/pos/infogenesis/count/dynamicVoucher/redemptions | Count dynamic voucher redemptions |
countDynamicVoucherRefunds() | POST /v2/pos/infogenesis/count/dynamicVoucher/refunds | Count dynamic voucher refunds |
countMembershipPointsRedemptions() | POST /v2/pos/infogenesis/count/membershipPoints/redemptions | Count redeemed membership points |
countMembershipPointsRefunds() | POST /v2/pos/infogenesis/count/membershipPoints/refunds | Count refunded membership points |
countMembershipTierRedemptions() | POST /v2/pos/infogenesis/count/membershipTier/redemptions | Count tier redemptions |
countMembershipTierRefunds() | POST /v2/pos/infogenesis/count/membershipTier/refunds | Count tier refunds |
countMerchantCreditRedemptions() | POST /v2/pos/infogenesis/count/merchantCredit/redemptions | Count redeemed merchant credits |
countMerchantCreditRefunds() | POST /v2/pos/infogenesis/count/merchantCredit/refunds | Count refunded merchant credits |
countStaticVoucherRedemptions() | POST /v2/pos/infogenesis/count/staticVoucher/redemptions | Count static voucher redemptions |
countStaticVoucherRefunds() | POST /v2/pos/infogenesis/count/staticVoucher/refunds | Count static voucher refunds |
fetchInfoGenesisAuthorizations() | POST /v2/pos/infogenesis/authorizations | Fetch InfoGenesis authorizations |
fetchInfoGenesisCampaignData() | POST /v2/pos/infogenesis/campaign | Fetch campaign information |
fetchInfoGenesisLookupRequests() | POST /v2/pos/infogenesis/requests/lookup | Fetch InfoGenesis lookup requests |
fetchInfoGenesisLookupRequestsErrors() | POST /v2/pos/infogenesis/requests/lookup/errors | Fetch InfoGenesis lookup request errors |
fetchInfoGenesisRedeemedStaticVouchers() | POST /v2/pos/infogenesis/staticVouchers/redeemed | Fetch redeemed static vouchers |
fetchInfoGenesisRedeemedUniquePostingIDs() | GET /v2/pos/infogenesis/postingIDs/redeemed | Fetch redeemed InfoGenesis unique posting IDs |
fetchInfoGenesisRedemptions() | POST /v2/pos/infogenesis/redemptions | Fetch InfoGenesis redemptions |
fetchInfoGenesisRefundedRoutingIDs() | POST /v2/pos/infogenesis/routingIDs/refunded | Fetch refunded InfoGenesis unique posting IDs |
fetchInfoGenesisRefundedStaticVouchers() | POST /v2/pos/infogenesis/staticVouchers/refunded | Fetch refunded static vouchers |
fetchInfoGenesisRefunds() | POST /v2/pos/infogenesis/refunds | Fetch InfoGenesis refunds |
fetchInfoGenesisRequest() | GET /v2/pos/infogenesis/request/{transactionID} | Fetch InfoGenesis request with transaction ID |
fetchInfoGenesisRequests() | POST /v2/pos/infogenesis/requests | Fetch InfoGenesis requests with routing IDs |
fetchInfoGenesisResponseErrors() | GET /v2/pos/infogenesis/responses/errors | Fetch InfoGenesis response errors |
fetchInfoGenesisResponses() | POST /v2/pos/infogenesis/responses | Fetch InfoGenesis responses with routing IDs |
fetchInfoGenesisTransactionsWithUniquePostingIDs() | POST /v2/pos/infogenesis/transactions | Fetch InfoGenesis transactions |
countAdCreditsRedemptions($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count redeemed ad credits
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countAdCreditsRedemptions($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countAdCreditsRedemptions: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countAdCreditsRefunds($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count refunded ad credits
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countAdCreditsRefunds($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countAdCreditsRefunds: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countDynamicVoucherRedemptions($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count dynamic voucher redemptions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countDynamicVoucherRedemptions($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countDynamicVoucherRedemptions: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countDynamicVoucherRefunds($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count dynamic voucher refunds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countDynamicVoucherRefunds($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countDynamicVoucherRefunds: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countMembershipPointsRedemptions($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count redeemed membership points
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countMembershipPointsRedemptions($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countMembershipPointsRedemptions: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countMembershipPointsRefunds($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count refunded membership points
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countMembershipPointsRefunds($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countMembershipPointsRefunds: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countMembershipTierRedemptions($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count tier redemptions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countMembershipTierRedemptions($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countMembershipTierRedemptions: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countMembershipTierRefunds($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count tier refunds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countMembershipTierRefunds($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countMembershipTierRefunds: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countMerchantCreditRedemptions($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count redeemed merchant credits
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countMerchantCreditRedemptions($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countMerchantCreditRedemptions: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countMerchantCreditRefunds($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count refunded merchant credits
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countMerchantCreditRefunds($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countMerchantCreditRefunds: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countStaticVoucherRedemptions($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count static voucher redemptions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countStaticVoucherRedemptions($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countStaticVoucherRedemptions: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
countStaticVoucherRefunds($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\WTCountResult
Count static voucher refunds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->countStaticVoucherRefunds($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->countStaticVoucherRefunds: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisAuthorizations($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\Request[]
Fetch InfoGenesis authorizations
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->fetchInfoGenesisAuthorizations($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisAuthorizations: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\Request[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisCampaignData($wt_info_genesis_record_filter_parameters): bool
Fetch campaign information
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->fetchInfoGenesisCampaignData($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisCampaignData: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
bool
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisLookupRequests($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\Request[]
Fetch InfoGenesis lookup requests
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->fetchInfoGenesisLookupRequests($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisLookupRequests: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\Request[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisLookupRequestsErrors($wt_info_genesis_lookup_request_errors): \OpenAPI\Client\Model\Request[]
Fetch InfoGenesis lookup request errors
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_lookup_request_errors = new \OpenAPI\Client\Model\WTInfoGenesisLookupRequestErrors(); // \OpenAPI\Client\Model\WTInfoGenesisLookupRequestErrors
try {
$result = $apiInstance->fetchInfoGenesisLookupRequestsErrors($wt_info_genesis_lookup_request_errors);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisLookupRequestsErrors: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_lookup_request_errors | \OpenAPI\Client\Model\WTInfoGenesisLookupRequestErrors |
\OpenAPI\Client\Model\Request[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisRedeemedStaticVouchers($wt_info_genesis_unique_posting_ids): \OpenAPI\Client\Model\StaticVoucher[]
Fetch redeemed static vouchers
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_unique_posting_ids = new \OpenAPI\Client\Model\WTInfoGenesisUniquePostingIDs(); // \OpenAPI\Client\Model\WTInfoGenesisUniquePostingIDs
try {
$result = $apiInstance->fetchInfoGenesisRedeemedStaticVouchers($wt_info_genesis_unique_posting_ids);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisRedeemedStaticVouchers: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_unique_posting_ids | \OpenAPI\Client\Model\WTInfoGenesisUniquePostingIDs |
\OpenAPI\Client\Model\StaticVoucher[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisRedeemedUniquePostingIDs($start_date_time, $end_date_time): mixed[]
Fetch redeemed InfoGenesis unique posting IDs
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$start_date_time = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
$end_date_time = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
try {
$result = $apiInstance->fetchInfoGenesisRedeemedUniquePostingIDs($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisRedeemedUniquePostingIDs: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
mixed[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisRedemptions($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\Request[]
Fetch InfoGenesis redemptions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->fetchInfoGenesisRedemptions($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisRedemptions: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\Request[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisRefundedRoutingIDs($start_date_time, $end_date_time): mixed[]
Fetch refunded InfoGenesis unique posting IDs
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$start_date_time = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
$end_date_time = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
try {
$result = $apiInstance->fetchInfoGenesisRefundedRoutingIDs($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisRefundedRoutingIDs: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
mixed[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisRefundedStaticVouchers($wt_info_genesis_routing_ids): \OpenAPI\Client\Model\StaticVoucher[]
Fetch refunded static vouchers
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_routing_ids = new \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs(); // \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs
try {
$result = $apiInstance->fetchInfoGenesisRefundedStaticVouchers($wt_info_genesis_routing_ids);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisRefundedStaticVouchers: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_routing_ids | \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs |
\OpenAPI\Client\Model\StaticVoucher[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisRefunds($wt_info_genesis_record_filter_parameters): \OpenAPI\Client\Model\Request[]
Fetch InfoGenesis refunds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_record_filter_parameters = new \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters(); // \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters
try {
$result = $apiInstance->fetchInfoGenesisRefunds($wt_info_genesis_record_filter_parameters);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisRefunds: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_record_filter_parameters | \OpenAPI\Client\Model\WTInfoGenesisRecordFilterParameters |
\OpenAPI\Client\Model\Request[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisRequest($transaction_id): \OpenAPI\Client\Model\Request
Fetch InfoGenesis request with transaction ID
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$transaction_id = 'transaction_id_example'; // string
try {
$result = $apiInstance->fetchInfoGenesisRequest($transaction_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisRequest: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
transaction_id | string |
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisRequests($wt_info_genesis_routing_ids): \OpenAPI\Client\Model\Request[]
Fetch InfoGenesis requests with routing IDs
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_routing_ids = new \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs(); // \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs
try {
$result = $apiInstance->fetchInfoGenesisRequests($wt_info_genesis_routing_ids);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisRequests: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_routing_ids | \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs |
\OpenAPI\Client\Model\Request[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisResponseErrors($start_date_time, $end_date_time): \OpenAPI\Client\Model\Response[]
Fetch InfoGenesis response errors
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$start_date_time = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
$end_date_time = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
try {
$result = $apiInstance->fetchInfoGenesisResponseErrors($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisResponseErrors: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\Response[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisResponses($wt_info_genesis_routing_ids): \OpenAPI\Client\Model\Response[]
Fetch InfoGenesis responses with routing IDs
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_routing_ids = new \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs(); // \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs
try {
$result = $apiInstance->fetchInfoGenesisResponses($wt_info_genesis_routing_ids);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisResponses: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_routing_ids | \OpenAPI\Client\Model\WTInfoGenesisRoutingIDs |
\OpenAPI\Client\Model\Response[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInfoGenesisTransactionsWithUniquePostingIDs($wt_info_genesis_unique_posting_ids): \OpenAPI\Client\Model\Request[]
Fetch InfoGenesis transactions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InfoGenesisReportsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$wt_info_genesis_unique_posting_ids = new \OpenAPI\Client\Model\WTInfoGenesisUniquePostingIDs(); // \OpenAPI\Client\Model\WTInfoGenesisUniquePostingIDs
try {
$result = $apiInstance->fetchInfoGenesisTransactionsWithUniquePostingIDs($wt_info_genesis_unique_posting_ids);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InfoGenesisReportsApi->fetchInfoGenesisTransactionsWithUniquePostingIDs: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_info_genesis_unique_posting_ids | \OpenAPI\Client\Model\WTInfoGenesisUniquePostingIDs |
\OpenAPI\Client\Model\Request[]
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]