All URIs are relative to https://api.wall.et, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
archiveQRCodeDesign() | DELETE /v2/qrcodedesign/{id} | Archive QR Code Design |
createQRCodeDesign() | POST /v2/qrcodedesign | Create QR Code design |
fetchAllQRCodeDesigns() | GET /v2/qrcodedesign/all | Fetch all active QR Code Designs |
fetchQRCodeDesignById() | GET /v2/qrcodedesign/{id} | Fetch QR Code Design |
restoreQRCodeDesign() | PATCH /v2/qrcodedesign/{id} | Restore payment design |
updateQRCodeDesign() | PUT /v2/qrcodedesign/{id} | Update QR Code Design |
archiveQRCodeDesign($id): \OpenAPI\Client\Model\WTQRCodeDesign
Archive QR Code Design
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\QRCodeDesignsApi(
// 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()
);
$id = NULL; // mixed
try {
$result = $apiInstance->archiveQRCodeDesign($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QRCodeDesignsApi->archiveQRCodeDesign: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | mixed |
\OpenAPI\Client\Model\WTQRCodeDesign
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
createQRCodeDesign($wtqr_code_design_create_params): \OpenAPI\Client\Model\WTQRCodeDesign
Create QR Code design
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\QRCodeDesignsApi(
// 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()
);
$wtqr_code_design_create_params = new \OpenAPI\Client\Model\WTQRCodeDesignCreateParams(); // \OpenAPI\Client\Model\WTQRCodeDesignCreateParams
try {
$result = $apiInstance->createQRCodeDesign($wtqr_code_design_create_params);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QRCodeDesignsApi->createQRCodeDesign: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wtqr_code_design_create_params | \OpenAPI\Client\Model\WTQRCodeDesignCreateParams |
\OpenAPI\Client\Model\WTQRCodeDesign
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchAllQRCodeDesigns($is_archive_included): \OpenAPI\Client\Model\WTQRCodeDesign[]
Fetch all active QR Code Designs
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\QRCodeDesignsApi(
// 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->fetchAllQRCodeDesigns($is_archive_included);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QRCodeDesignsApi->fetchAllQRCodeDesigns: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
is_archive_included | bool | [optional] |
\OpenAPI\Client\Model\WTQRCodeDesign[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchQRCodeDesignById($id): \OpenAPI\Client\Model\WTQRCodeDesign
Fetch QR Code Design
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\QRCodeDesignsApi(
// 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()
);
$id = NULL; // mixed
try {
$result = $apiInstance->fetchQRCodeDesignById($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QRCodeDesignsApi->fetchQRCodeDesignById: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | mixed |
\OpenAPI\Client\Model\WTQRCodeDesign
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
restoreQRCodeDesign($id): \OpenAPI\Client\Model\QRCodeDesign
Restore payment design
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\QRCodeDesignsApi(
// 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()
);
$id = NULL; // mixed
try {
$result = $apiInstance->restoreQRCodeDesign($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QRCodeDesignsApi->restoreQRCodeDesign: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | mixed |
\OpenAPI\Client\Model\QRCodeDesign
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updateQRCodeDesign($id, $wtqr_code_design_update_params): \OpenAPI\Client\Model\WTQRCodeDesign
Update QR Code Design
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\QRCodeDesignsApi(
// 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()
);
$id = NULL; // mixed
$wtqr_code_design_update_params = new \OpenAPI\Client\Model\WTQRCodeDesignUpdateParams(); // \OpenAPI\Client\Model\WTQRCodeDesignUpdateParams
try {
$result = $apiInstance->updateQRCodeDesign($id, $wtqr_code_design_update_params);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QRCodeDesignsApi->updateQRCodeDesign: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | mixed | ||
wtqr_code_design_update_params | \OpenAPI\Client\Model\WTQRCodeDesignUpdateParams |
\OpenAPI\Client\Model\WTQRCodeDesign
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]