All URIs are relative to https://api.wall.et, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
archiveImageGrid() | DELETE /v2/imageGrid/{id} | Archive image |
createImageGrid() | POST /v2/imageGrid | Create image |
fetchAllImageGrid() | GET /v2/imageGrid/all | Fetch all images |
restoreImageGrid() | PATCH /v2/imageGrid/{id} | Restore image |
updateImageGrid() | PUT /v2/imageGrid/{id} | Update image |
archiveImageGrid($id): \OpenAPI\Client\Model\ImageGrid
Archive image
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ImageGridApi(
// 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->archiveImageGrid($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ImageGridApi->archiveImageGrid: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | mixed |
\OpenAPI\Client\Model\ImageGrid
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
createImageGrid($wt_image_grid_create_params): \OpenAPI\Client\Model\ImageGrid
Create image
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ImageGridApi(
// 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_image_grid_create_params = new \OpenAPI\Client\Model\WTImageGridCreateParams(); // \OpenAPI\Client\Model\WTImageGridCreateParams
try {
$result = $apiInstance->createImageGrid($wt_image_grid_create_params);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ImageGridApi->createImageGrid: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
wt_image_grid_create_params | \OpenAPI\Client\Model\WTImageGridCreateParams |
\OpenAPI\Client\Model\ImageGrid
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
fetchAllImageGrid($is_archive_included): mixed
Fetch all images
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ImageGridApi(
// 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->fetchAllImageGrid($is_archive_included);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ImageGridApi->fetchAllImageGrid: ', $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]
restoreImageGrid($id): \OpenAPI\Client\Model\ImageGrid
Restore image
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ImageGridApi(
// 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->restoreImageGrid($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ImageGridApi->restoreImageGrid: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | mixed |
\OpenAPI\Client\Model\ImageGrid
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updateImageGrid($id, $wt_image_grid_update_params): \OpenAPI\Client\Model\ImageGrid
Update image
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ImageGridApi(
// 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
$wt_image_grid_update_params = new \OpenAPI\Client\Model\WTImageGridUpdateParams(); // \OpenAPI\Client\Model\WTImageGridUpdateParams
try {
$result = $apiInstance->updateImageGrid($id, $wt_image_grid_update_params);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ImageGridApi->updateImageGrid: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | mixed | ||
wt_image_grid_update_params | \OpenAPI\Client\Model\WTImageGridUpdateParams |
\OpenAPI\Client\Model\ImageGrid
No authorization required
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]