All URIs are relative to https://api.wall.et, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
fetchDashboardActiveStaticVoucherCampaignsCount() | GET /v2/dashboard/count/staticVoucherCampaigns/active | Count active static voucher campaigns |
fetchDashboardActiveStaticVouchersCount() | GET /v2/dashboard/count/staticVouchers/active | Count active static vouchers |
fetchDashboardAppleWalletSubscribersCount() | GET /v2/dashboard/count/appleWallet/subscribers | Count Apple Wallet Subscribers |
fetchDashboardEmployeesCount() | GET /v2/dashboard/count/employees | Count employees |
fetchDashboardMembersCount() | GET /v2/dashboard/count/members | Count members |
fetchDashboardMembershipTiersCount() | GET /v2/dashboard/count/membershipTiers | Count tiers |
fetchDashboardNewsArticlesCount() | GET /v2/dashboard/count/newsArticles | Count News Articles |
fetchDashboardOptInListsCount() | GET /v2/dashboard/count/optInLists | Count opt in lists |
fetchDashboardOptInSourcesCount() | GET /v2/dashboard/count/optInSources | Count opt in sources |
fetchDashboardOutboundSMSCount() | GET /v2/dashboard/count/sms/outbound | Count Outbound SMS |
fetchDashboardPOSMachinesCount() | GET /v2/dashboard/count/pos/machines | Count POS Machines |
fetchDashboardPOSTransactionsCount() | GET /v2/dashboard/count/pos/transactions | Count POS Transactions |
fetchDashboardPerformancesCount() | GET /v2/dashboard/count/performances | Count Performances |
fetchDashboardPhoneNumbersCount() | GET /v2/dashboard/count/phoneNumbers | Count phone numbers |
fetchDashboardRedemptionsCount() | GET /v2/dashboard/count/pos/redemptions | Count POS redemptions |
fetchDashboardRefundsCount() | GET /v2/dashboard/count/pos/refunds | Count POS refunds |
fetchDashboardWalletPageViewsCount() | GET /v2/dashboard/count/wallet/pageViews | Count Wallet page views |
fetchDashboardWidgetsCatalog() | GET /v2/dashboard/widgets | Fetch widgets catalog |
fetchDashboardActiveStaticVoucherCampaignsCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count active static voucher campaigns
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardActiveStaticVoucherCampaignsCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardActiveStaticVoucherCampaignsCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardActiveStaticVouchersCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count active static vouchers
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardActiveStaticVouchersCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardActiveStaticVouchersCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardAppleWalletSubscribersCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count Apple Wallet Subscribers
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardAppleWalletSubscribersCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardAppleWalletSubscribersCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardEmployeesCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count employees
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardEmployeesCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardEmployeesCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardMembersCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count members
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardMembersCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardMembersCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardMembershipTiersCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count tiers
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardMembershipTiersCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardMembershipTiersCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardNewsArticlesCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count News Articles
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardNewsArticlesCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardNewsArticlesCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardOptInListsCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count opt in lists
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardOptInListsCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardOptInListsCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardOptInSourcesCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count opt in sources
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardOptInSourcesCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardOptInSourcesCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardOutboundSMSCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count Outbound SMS
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardOutboundSMSCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardOutboundSMSCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardPOSMachinesCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count POS Machines
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardPOSMachinesCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardPOSMachinesCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardPOSTransactionsCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count POS Transactions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardPOSTransactionsCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardPOSTransactionsCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardPerformancesCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count Performances
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardPerformancesCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardPerformancesCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardPhoneNumbersCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count phone numbers
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardPhoneNumbersCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardPhoneNumbersCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardRedemptionsCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count POS redemptions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardRedemptionsCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardRedemptionsCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardRefundsCount($start_date_time, $end_date_time): \OpenAPI\Client\Model\WTCountResult
Count POS refunds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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->fetchDashboardRefundsCount($start_date_time, $end_date_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardRefundsCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardWalletPageViewsCount($start_date_time, $end_date_time, $wallet_object_prefix): \OpenAPI\Client\Model\WTCountResult
Count Wallet page views
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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
$wallet_object_prefix = 'wallet_object_prefix_example'; // string
try {
$result = $apiInstance->fetchDashboardWalletPageViewsCount($start_date_time, $end_date_time, $wallet_object_prefix);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardWalletPageViewsCount: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
start_date_time | \DateTime | ||
end_date_time | \DateTime | ||
wallet_object_prefix | string | [optional] |
\OpenAPI\Client\Model\WTCountResult
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchDashboardWidgetsCatalog(): \OpenAPI\Client\Model\DashboardWidget[]
Fetch widgets catalog
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\DashboardApi(
// 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()
);
try {
$result = $apiInstance->fetchDashboardWidgetsCatalog();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DashboardApi->fetchDashboardWidgetsCatalog: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\OpenAPI\Client\Model\DashboardWidget[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]