All URIs are relative to https://api.wall.et, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
archiveMerchantProfile() | DELETE /v2/merchant/delete | Archive Merchant |
archivePaymentObjectBroadcast() | DELETE /v2/merchant/paymentObjectBroadcast/{broadcastID} | Archive payment object broadcast |
countInboundSMS() | GET /v2/merchant/sms/inbound/count/{phoneNumberID} | Count inbound SMSes |
exportInboundMessages() | PUT /v2/merchant/sms/inbound/export/{phoneNumberID} | Export inbound messages |
exportOutboundMessages() | PUT /v2/merchant/sms/outbound/export/{phoneNumberID} | Export outbound messages |
fetchAdvertisementCreditBroadcasts() | GET /v2/merchant/broadcasts/adCredits/all | Fetch all ad credit broadcasts |
fetchCustomRoles() | GET /v2/merchant/roles/custom | Fetch custom roles |
fetchDynamicVoucherBroadcasts() | GET /v2/merchant/broadcasts/dynamicVouchers/all | Fetch all dynamic voucher broadcasts |
fetchEmployees() | GET /v2/merchant/employees/all | Fetch all employees |
fetchHelpDeskRequests() | GET /v2/merchant/helpDeskRequests/{phoneNumberID} | Fetch help desk requests |
fetchImportedList() | GET /v2/merchant/lists/imported/{listID} | Fetch imported list |
fetchImportedLists() | GET /v2/merchant/lists/imported/all | Fetch all imported lists |
fetchInboundSMS() | GET /v2/merchant/sms/inbound/{phoneNumberID} | Fetch inbound SMSes |
fetchInboundSMSByPage() | GET /v2/merchant/sms/inbound/page/{phoneNumberID} | Fetch inbound SMSes by page |
fetchMerchantOutboundSMS() | GET /v2/merchant/sms/outbound/{phoneNumberID} | Fetch outbound SMSes |
fetchMerchantPhoneNumbers() | GET /v2/merchant/phoneNumbers/all | Fetch all phone numbers |
fetchOptInList() | GET /v2/merchant/lists/optIn/{listID} | Fetch opt in list |
fetchOptInLists() | GET /v2/merchant/lists/optIn/all | Fetch all opt in lists |
fetchPhoneNumber() | GET /v2/merchant/phoneNumber/{phoneNumberID} | Fetch phone number |
fetchPublicEmployees() | GET /v2/merchant/employees/public | Fetch public representative employees of the merchant |
fetchSimpleSMSBroadcasts() | GET /v2/merchant/broadcasts/simpleSMS/all | Fetch all simple SMS broadcasts |
fetchStaticVoucherCampaignBroadcasts() | GET /v2/merchant/broadcasts/staticVoucherCampaign/all | Fetch all static voucher campaign broadcasts |
fetchTCPAFilter() | GET /v2/merchant/tcpa/filter/all | Fetch all TCPA Filters |
fetchWalletConfiguration() | GET /v2/merchant/wallet/configuration | Fetch wallet configuration |
updateMerchant() | PUT /v2/merchant | Update merchant details |
updatePointsOfContact() | PUT /v2/merchant/pointsOfContact | Update billing contact |
updatePosIntegration() | PUT /v2/merchant/pos/integration | Update POS Integration |
archiveMerchantProfile(): mixed
Archive Merchant
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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->archiveMerchantProfile();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->archiveMerchantProfile: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
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]
archivePaymentObjectBroadcast($broadcast_id): mixed
Archive payment object broadcast
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$broadcast_id = NULL; // mixed
try {
$result = $apiInstance->archivePaymentObjectBroadcast($broadcast_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->archivePaymentObjectBroadcast: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
broadcast_id | mixed |
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]
countInboundSMS($phone_number_id, $from_phone_number, $body, $start_date, $end_date): \OpenAPI\Client\Model\WTCountResult
Count inbound SMSes
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$phone_number_id = NULL; // mixed
$from_phone_number = 'from_phone_number_example'; // string
$body = 'body_example'; // string
$start_date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
$end_date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
try {
$result = $apiInstance->countInboundSMS($phone_number_id, $from_phone_number, $body, $start_date, $end_date);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->countInboundSMS: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
phone_number_id | mixed | ||
from_phone_number | string | [optional] | |
body | string | [optional] | |
start_date | \DateTime | [optional] | |
end_date | \DateTime | [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]
exportInboundMessages($phone_number_id, $locale): string
Export inbound messages
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$phone_number_id = 'phone_number_id_example'; // string
$locale = 'locale_example'; // string
try {
$result = $apiInstance->exportInboundMessages($phone_number_id, $locale);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->exportInboundMessages: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
phone_number_id | string | ||
locale | string |
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]
exportOutboundMessages($phone_number_id, $locale, $payment_object_broadcast_id): string
Export outbound messages
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$phone_number_id = 'phone_number_id_example'; // string
$locale = 'locale_example'; // string
$payment_object_broadcast_id = 'payment_object_broadcast_id_example'; // string
try {
$result = $apiInstance->exportOutboundMessages($phone_number_id, $locale, $payment_object_broadcast_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->exportOutboundMessages: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
phone_number_id | string | ||
locale | string | ||
payment_object_broadcast_id | string | [optional] |
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]
fetchAdvertisementCreditBroadcasts($is_archive_included): \OpenAPI\Client\Model\AdvertisementCreditBroadcast[]
Fetch all ad credit broadcasts
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$is_archive_included = True; // bool
try {
$result = $apiInstance->fetchAdvertisementCreditBroadcasts($is_archive_included);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchAdvertisementCreditBroadcasts: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
is_archive_included | bool | [optional] |
\OpenAPI\Client\Model\AdvertisementCreditBroadcast[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchCustomRoles(): mixed
Fetch custom roles
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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->fetchCustomRoles();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchCustomRoles: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
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]
fetchDynamicVoucherBroadcasts($is_archive_included): \OpenAPI\Client\Model\DynamicVoucherBroadcast[]
Fetch all dynamic voucher broadcasts
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$is_archive_included = True; // bool
try {
$result = $apiInstance->fetchDynamicVoucherBroadcasts($is_archive_included);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchDynamicVoucherBroadcasts: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
is_archive_included | bool | [optional] |
\OpenAPI\Client\Model\DynamicVoucherBroadcast[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchEmployees(): mixed
Fetch all employees
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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->fetchEmployees();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchEmployees: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
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]
fetchHelpDeskRequests($phone_number_id, $is_resolved): \OpenAPI\Client\Model\HelpDeskRequest[]
Fetch help desk requests
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$phone_number_id = NULL; // mixed
$is_resolved = True; // bool
try {
$result = $apiInstance->fetchHelpDeskRequests($phone_number_id, $is_resolved);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchHelpDeskRequests: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
phone_number_id | mixed | ||
is_resolved | bool | [optional] |
\OpenAPI\Client\Model\HelpDeskRequest[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchImportedList($list_id): \OpenAPI\Client\Model\ImportedList
Fetch imported list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$list_id = NULL; // mixed
try {
$result = $apiInstance->fetchImportedList($list_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchImportedList: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
list_id | mixed |
\OpenAPI\Client\Model\ImportedList
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchImportedLists($is_archive_included): mixed
Fetch all imported lists
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$is_archive_included = True; // bool
try {
$result = $apiInstance->fetchImportedLists($is_archive_included);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchImportedLists: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
is_archive_included | bool | [optional] |
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]
fetchInboundSMS($phone_number_id, $from_phone_number): \OpenAPI\Client\Model\InboundSMS[]
Fetch inbound SMSes
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$phone_number_id = NULL; // mixed
$from_phone_number = 'from_phone_number_example'; // string
try {
$result = $apiInstance->fetchInboundSMS($phone_number_id, $from_phone_number);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchInboundSMS: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
phone_number_id | mixed | ||
from_phone_number | string | [optional] |
\OpenAPI\Client\Model\InboundSMS[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchInboundSMSByPage($phone_number_id, $from_phone_number, $page_size, $page_num, $start_date, $end_date): \OpenAPI\Client\Model\FetchInboundSMSByPage200Response
Fetch inbound SMSes by page
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$phone_number_id = NULL; // mixed
$from_phone_number = 'from_phone_number_example'; // string
$page_size = 3.4; // float
$page_num = 3.4; // float
$start_date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
$end_date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime
try {
$result = $apiInstance->fetchInboundSMSByPage($phone_number_id, $from_phone_number, $page_size, $page_num, $start_date, $end_date);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchInboundSMSByPage: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
phone_number_id | mixed | ||
from_phone_number | string | [optional] | |
page_size | float | [optional] | |
page_num | float | [optional] | |
start_date | \DateTime | [optional] | |
end_date | \DateTime | [optional] |
\OpenAPI\Client\Model\FetchInboundSMSByPage200Response
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchMerchantOutboundSMS($phone_number_id, $to_phone_number): \OpenAPI\Client\Model\OutboundSMS[]
Fetch outbound SMSes
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$phone_number_id = NULL; // mixed
$to_phone_number = 'to_phone_number_example'; // string
try {
$result = $apiInstance->fetchMerchantOutboundSMS($phone_number_id, $to_phone_number);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchMerchantOutboundSMS: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
phone_number_id | mixed | ||
to_phone_number | string |
\OpenAPI\Client\Model\OutboundSMS[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchMerchantPhoneNumbers($is_archive_included, $is_approved): mixed
Fetch all phone numbers
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$is_archive_included = True; // bool
$is_approved = True; // bool
try {
$result = $apiInstance->fetchMerchantPhoneNumbers($is_archive_included, $is_approved);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchMerchantPhoneNumbers: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
is_archive_included | bool | [optional] | |
is_approved | bool | [optional] |
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]
fetchOptInList($list_id): \OpenAPI\Client\Model\OptInList
Fetch opt in list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$list_id = NULL; // mixed
try {
$result = $apiInstance->fetchOptInList($list_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchOptInList: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
list_id | mixed |
\OpenAPI\Client\Model\OptInList
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchOptInLists($is_archive_included): mixed
Fetch all opt in lists
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$is_archive_included = True; // bool
try {
$result = $apiInstance->fetchOptInLists($is_archive_included);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchOptInLists: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
is_archive_included | bool | [optional] |
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]
fetchPhoneNumber($phone_number_id): \OpenAPI\Client\Model\PhoneNumber
Fetch phone number
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$phone_number_id = NULL; // mixed
try {
$result = $apiInstance->fetchPhoneNumber($phone_number_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchPhoneNumber: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
phone_number_id | mixed |
\OpenAPI\Client\Model\PhoneNumber
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchPublicEmployees(): mixed
Fetch public representative employees of the merchant
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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->fetchPublicEmployees();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchPublicEmployees: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
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]
fetchSimpleSMSBroadcasts($is_archive_included): \OpenAPI\Client\Model\SimpleSMSBroadcast[]
Fetch all simple SMS broadcasts
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$is_archive_included = True; // bool
try {
$result = $apiInstance->fetchSimpleSMSBroadcasts($is_archive_included);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchSimpleSMSBroadcasts: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
is_archive_included | bool | [optional] |
\OpenAPI\Client\Model\SimpleSMSBroadcast[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchStaticVoucherCampaignBroadcasts($is_archive_included): \OpenAPI\Client\Model\StaticVoucherCampaignBroadcast[]
Fetch all static voucher campaign broadcasts
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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()
);
$is_archive_included = True; // bool
try {
$result = $apiInstance->fetchStaticVoucherCampaignBroadcasts($is_archive_included);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchStaticVoucherCampaignBroadcasts: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
is_archive_included | bool | [optional] |
\OpenAPI\Client\Model\StaticVoucherCampaignBroadcast[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchTCPAFilter(): \OpenAPI\Client\Model\Tcpa[]
Fetch all TCPA Filters
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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->fetchTCPAFilter();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchTCPAFilter: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchWalletConfiguration(): mixed
Fetch wallet configuration
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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->fetchWalletConfiguration();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->fetchWalletConfiguration: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
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]
updateMerchant($wt_merchant_update): mixed
Update merchant details
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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_merchant_update = new \OpenAPI\Client\Model\WTMerchantUpdate(); // \OpenAPI\Client\Model\WTMerchantUpdate
try {
$result = $apiInstance->updateMerchant($wt_merchant_update);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->updateMerchant: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_merchant_update | \OpenAPI\Client\Model\WTMerchantUpdate |
mixed
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updatePointsOfContact($wt_merchant_update_points_of_contact): mixed
Update billing contact
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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_merchant_update_points_of_contact = new \OpenAPI\Client\Model\WTMerchantUpdatePointsOfContact(); // \OpenAPI\Client\Model\WTMerchantUpdatePointsOfContact
try {
$result = $apiInstance->updatePointsOfContact($wt_merchant_update_points_of_contact);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->updatePointsOfContact: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_merchant_update_points_of_contact | \OpenAPI\Client\Model\WTMerchantUpdatePointsOfContact |
mixed
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updatePosIntegration($wt_merchant_update_pos_integration): mixed
Update POS Integration
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\MerchantApi(
// 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_merchant_update_pos_integration = new \OpenAPI\Client\Model\WTMerchantUpdatePOSIntegration(); // \OpenAPI\Client\Model\WTMerchantUpdatePOSIntegration
try {
$result = $apiInstance->updatePosIntegration($wt_merchant_update_pos_integration);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MerchantApi->updatePosIntegration: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_merchant_update_pos_integration | \OpenAPI\Client\Model\WTMerchantUpdatePOSIntegration |
mixed
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]