Skip to content

Latest commit

 

History

History
1553 lines (1056 loc) · 44.9 KB

DesignAtomsViewerApi.md

File metadata and controls

1553 lines (1056 loc) · 44.9 KB

Aurigma\DesignAtoms\DesignAtomsViewerApi

All URIs are relative to http://localhost.

Method HTTP request Description
designAtomsViewerCssFonts() POST /api/atoms/v1/ccviewer/cssfonts
designAtomsViewerFonts() GET /api/atoms/v1/ccviewer/fonts/{psName}
designAtomsViewerGetColorPreview() POST /api/atoms/v1/ccviewer/GetColorPreview
designAtomsViewerGetColorPreviews() POST /api/atoms/v1/ccviewer/GetColorPreviews
designAtomsViewerGetCssFont() GET /api/atoms/v1/ccviewer/GetCssFont
designAtomsViewerGetFallbackFonts() GET /api/atoms/v1/ccviewer/GetFallbackFonts
designAtomsViewerGetImageSize() POST /api/atoms/v1/ccviewer/GetImageSize
designAtomsViewerGetLicense() GET /api/atoms/v1/ccviewer/license
designAtomsViewerGetShapeBounds() POST /api/atoms/v1/ccviewer/GetShapeBounds
designAtomsViewerGetWatermarkItems() POST /api/atoms/v1/ccviewer/GetWatermarkItems
designAtomsViewerImg() GET /api/atoms/v1/ccviewer/img
designAtomsViewerPth() GET /api/atoms/v1/ccviewer/pth
designAtomsViewerResource() GET /api/atoms/v1/ccviewer/resource
designAtomsViewerSvg() GET /api/atoms/v1/ccviewer/svg
designAtomsViewerTxt() GET /api/atoms/v1/ccviewer/txt
designAtomsViewerUpdateArchedTextItemHandler() POST /api/atoms/v1/ccviewer/UpdateArchedTextItemHandler
designAtomsViewerUpdateAutoScaledTextItemHandler() POST /api/atoms/v1/ccviewer/UpdateAutoScaledTextItemHandler
designAtomsViewerUpdateBarcodeItemHandler() POST /api/atoms/v1/ccviewer/UpdateBarcodeItemHandler
designAtomsViewerUpdateBoundedTextItemHandler() POST /api/atoms/v1/ccviewer/UpdateBoundedTextItemHandler
designAtomsViewerUpdateByColorData() POST /api/atoms/v1/ccviewer/UpdateByColorData
designAtomsViewerUpdateByMultiCallRequest() POST /api/atoms/v1/ccviewer/UpdateByMultiCallRequest
designAtomsViewerUpdateCurvedTextItemHandler() POST /api/atoms/v1/ccviewer/UpdateCurvedTextItemHandler
designAtomsViewerUpdateImageItemHandler() POST /api/atoms/v1/ccviewer/UpdateImageItemHandler
designAtomsViewerUpdatePathBoundedTextItemHandler() POST /api/atoms/v1/ccviewer/UpdatePathBoundedTextItemHandler
designAtomsViewerUpdatePlainTextItemHandler() POST /api/atoms/v1/ccviewer/UpdatePlainTextItemHandler
designAtomsViewerUpdateShapeItemHandler() POST /api/atoms/v1/ccviewer/UpdateShapeItemHandler

designAtomsViewerCssFonts()

designAtomsViewerCssFonts($tenant_id, $fonts_method_data): string

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$fonts_method_data = new \Aurigma\DesignAtoms\Model\FontsMethodData(); // \Aurigma\DesignAtoms\Model\FontsMethodData

try {
    $result = $apiInstance->designAtomsViewerCssFonts($tenant_id, $fonts_method_data);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerCssFonts: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
fonts_method_data \Aurigma\DesignAtoms\Model\FontsMethodData [optional]

Return type

string

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerFonts()

designAtomsViewerFonts($ps_name, $tenant_id): \SplFileObject

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$ps_name = 'ps_name_example'; // string
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerFonts($ps_name, $tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerFonts: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
ps_name string
tenant_id int Tenant identifier [optional]

Return type

\SplFileObject

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/octet-stream, application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerGetColorPreview()

designAtomsViewerGetColorPreview($tenant_id, $get_color_preview_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$get_color_preview_request = new \Aurigma\DesignAtoms\Model\GetColorPreviewRequest(); // \Aurigma\DesignAtoms\Model\GetColorPreviewRequest

try {
    $result = $apiInstance->designAtomsViewerGetColorPreview($tenant_id, $get_color_preview_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerGetColorPreview: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
get_color_preview_request \Aurigma\DesignAtoms\Model\GetColorPreviewRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerGetColorPreviews()

designAtomsViewerGetColorPreviews($tenant_id, $get_color_previews_request): \Aurigma\DesignAtoms\Model\GetColorPreviewsResponse

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$get_color_previews_request = new \Aurigma\DesignAtoms\Model\GetColorPreviewsRequest(); // \Aurigma\DesignAtoms\Model\GetColorPreviewsRequest

try {
    $result = $apiInstance->designAtomsViewerGetColorPreviews($tenant_id, $get_color_previews_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerGetColorPreviews: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
get_color_previews_request \Aurigma\DesignAtoms\Model\GetColorPreviewsRequest [optional]

Return type

\Aurigma\DesignAtoms\Model\GetColorPreviewsResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerGetCssFont()

designAtomsViewerGetCssFont($font_key, $tenant_id): \SplFileObject

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$font_key = 'font_key_example'; // string
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerGetCssFont($font_key, $tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerGetCssFont: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
font_key string [optional]
tenant_id int Tenant identifier [optional]

Return type

\SplFileObject

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerGetFallbackFonts()

designAtomsViewerGetFallbackFonts($tenant_id): \SplFileObject

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerGetFallbackFonts($tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerGetFallbackFonts: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]

Return type

\SplFileObject

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerGetImageSize()

designAtomsViewerGetImageSize($tenant_id, $get_image_size_request): \Aurigma\DesignAtoms\Model\NullAbleSize

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$get_image_size_request = new \Aurigma\DesignAtoms\Model\GetImageSizeRequest(); // \Aurigma\DesignAtoms\Model\GetImageSizeRequest

try {
    $result = $apiInstance->designAtomsViewerGetImageSize($tenant_id, $get_image_size_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerGetImageSize: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
get_image_size_request \Aurigma\DesignAtoms\Model\GetImageSizeRequest [optional]

Return type

\Aurigma\DesignAtoms\Model\NullAbleSize

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerGetLicense()

designAtomsViewerGetLicense($tenant_id): string

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerGetLicense($tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerGetLicense: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]

Return type

string

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerGetShapeBounds()

designAtomsViewerGetShapeBounds($tenant_id, $get_shape_bounds_request): \Aurigma\DesignAtoms\Model\RectangleF

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$get_shape_bounds_request = new \Aurigma\DesignAtoms\Model\GetShapeBoundsRequest(); // \Aurigma\DesignAtoms\Model\GetShapeBoundsRequest

try {
    $result = $apiInstance->designAtomsViewerGetShapeBounds($tenant_id, $get_shape_bounds_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerGetShapeBounds: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
get_shape_bounds_request \Aurigma\DesignAtoms\Model\GetShapeBoundsRequest [optional]

Return type

\Aurigma\DesignAtoms\Model\RectangleF

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerGetWatermarkItems()

designAtomsViewerGetWatermarkItems($tenant_id, $body): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$body = NULL; // mixed

try {
    $result = $apiInstance->designAtomsViewerGetWatermarkItems($tenant_id, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerGetWatermarkItems: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
body mixed [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerImg()

designAtomsViewerImg($f, $w, $h, $cmyk, $rgb, $grayscale, $target, $sq, $effect, $kp, $color, $obm, $oo, $alpha_mask, $page, $colorize_color, $rw, $rh, $tenant_id): \SplFileObject

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$f = 'f_example'; // string
$w = 56; // int
$h = 56; // int
$cmyk = 'cmyk_example'; // string
$rgb = 'rgb_example'; // string
$grayscale = 'grayscale_example'; // string
$target = 'target_example'; // string
$sq = True; // bool
$effect = 'effect_example'; // string
$kp = True; // bool
$color = 'color_example'; // string
$obm = 'obm_example'; // string
$oo = 3.4; // float
$alpha_mask = True; // bool
$page = 56; // int
$colorize_color = 'colorize_color_example'; // string
$rw = 3.4; // float
$rh = 3.4; // float
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerImg($f, $w, $h, $cmyk, $rgb, $grayscale, $target, $sq, $effect, $kp, $color, $obm, $oo, $alpha_mask, $page, $colorize_color, $rw, $rh, $tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerImg: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
f string [optional]
w int [optional]
h int [optional]
cmyk string [optional]
rgb string [optional]
grayscale string [optional]
target string [optional]
sq bool [optional]
effect string [optional]
kp bool [optional]
color string [optional]
obm string [optional]
oo float [optional]
alpha_mask bool [optional]
page int [optional]
colorize_color string [optional]
rw float [optional]
rh float [optional]
tenant_id int Tenant identifier [optional]

Return type

\SplFileObject

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerPth()

designAtomsViewerPth($f, $tenant_id): \SplFileObject

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$f = 'f_example'; // string
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerPth($f, $tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerPth: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
f string [optional]
tenant_id int Tenant identifier [optional]

Return type

\SplFileObject

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerResource()

designAtomsViewerResource($image, $tenant_id): \SplFileObject

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$image = 'image_example'; // string
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerResource($image, $tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerResource: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
image string [optional]
tenant_id int Tenant identifier [optional]

Return type

\SplFileObject

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerSvg()

designAtomsViewerSvg($f, $w, $h, $cmyk, $rgb, $grayscale, $target, $sq, $effect, $kp, $color, $obm, $oo, $alpha_mask, $page, $colorize_color, $rw, $rh, $tenant_id): \SplFileObject

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$f = 'f_example'; // string
$w = 56; // int
$h = 56; // int
$cmyk = 'cmyk_example'; // string
$rgb = 'rgb_example'; // string
$grayscale = 'grayscale_example'; // string
$target = 'target_example'; // string
$sq = True; // bool
$effect = 'effect_example'; // string
$kp = True; // bool
$color = 'color_example'; // string
$obm = 'obm_example'; // string
$oo = 3.4; // float
$alpha_mask = True; // bool
$page = 56; // int
$colorize_color = 'colorize_color_example'; // string
$rw = 3.4; // float
$rh = 3.4; // float
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerSvg($f, $w, $h, $cmyk, $rgb, $grayscale, $target, $sq, $effect, $kp, $color, $obm, $oo, $alpha_mask, $page, $colorize_color, $rw, $rh, $tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerSvg: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
f string [optional]
w int [optional]
h int [optional]
cmyk string [optional]
rgb string [optional]
grayscale string [optional]
target string [optional]
sq bool [optional]
effect string [optional]
kp bool [optional]
color string [optional]
obm string [optional]
oo float [optional]
alpha_mask bool [optional]
page int [optional]
colorize_color string [optional]
rw float [optional]
rh float [optional]
tenant_id int Tenant identifier [optional]

Return type

\SplFileObject

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerTxt()

designAtomsViewerTxt($f, $tenant_id): \SplFileObject

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$f = 'f_example'; // string
$tenant_id = 56; // int | Tenant identifier

try {
    $result = $apiInstance->designAtomsViewerTxt($f, $tenant_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerTxt: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
f string [optional]
tenant_id int Tenant identifier [optional]

Return type

\SplFileObject

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateArchedTextItemHandler()

designAtomsViewerUpdateArchedTextItemHandler($tenant_id, $update_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_handler_request = new \Aurigma\DesignAtoms\Model\UpdateHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateArchedTextItemHandler($tenant_id, $update_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateArchedTextItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_handler_request \Aurigma\DesignAtoms\Model\UpdateHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateAutoScaledTextItemHandler()

designAtomsViewerUpdateAutoScaledTextItemHandler($tenant_id, $update_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_handler_request = new \Aurigma\DesignAtoms\Model\UpdateHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateAutoScaledTextItemHandler($tenant_id, $update_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateAutoScaledTextItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_handler_request \Aurigma\DesignAtoms\Model\UpdateHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateBarcodeItemHandler()

designAtomsViewerUpdateBarcodeItemHandler($tenant_id, $update_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_handler_request = new \Aurigma\DesignAtoms\Model\UpdateHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateBarcodeItemHandler($tenant_id, $update_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateBarcodeItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_handler_request \Aurigma\DesignAtoms\Model\UpdateHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateBoundedTextItemHandler()

designAtomsViewerUpdateBoundedTextItemHandler($tenant_id, $update_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_handler_request = new \Aurigma\DesignAtoms\Model\UpdateHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateBoundedTextItemHandler($tenant_id, $update_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateBoundedTextItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_handler_request \Aurigma\DesignAtoms\Model\UpdateHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateByColorData()

designAtomsViewerUpdateByColorData($tenant_id, $update_colors_request): string

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_colors_request = new \Aurigma\DesignAtoms\Model\UpdateColorsRequest(); // \Aurigma\DesignAtoms\Model\UpdateColorsRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateByColorData($tenant_id, $update_colors_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateByColorData: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_colors_request \Aurigma\DesignAtoms\Model\UpdateColorsRequest [optional]

Return type

string

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateByMultiCallRequest()

designAtomsViewerUpdateByMultiCallRequest($tenant_id, $multi_call_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$multi_call_request = new \Aurigma\DesignAtoms\Model\MultiCallRequest(); // \Aurigma\DesignAtoms\Model\MultiCallRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateByMultiCallRequest($tenant_id, $multi_call_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateByMultiCallRequest: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
multi_call_request \Aurigma\DesignAtoms\Model\MultiCallRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateCurvedTextItemHandler()

designAtomsViewerUpdateCurvedTextItemHandler($tenant_id, $update_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_handler_request = new \Aurigma\DesignAtoms\Model\UpdateHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateCurvedTextItemHandler($tenant_id, $update_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateCurvedTextItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_handler_request \Aurigma\DesignAtoms\Model\UpdateHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateImageItemHandler()

designAtomsViewerUpdateImageItemHandler($tenant_id, $update_image_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_image_handler_request = new \Aurigma\DesignAtoms\Model\UpdateImageHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateImageHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateImageItemHandler($tenant_id, $update_image_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateImageItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_image_handler_request \Aurigma\DesignAtoms\Model\UpdateImageHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdatePathBoundedTextItemHandler()

designAtomsViewerUpdatePathBoundedTextItemHandler($tenant_id, $update_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_handler_request = new \Aurigma\DesignAtoms\Model\UpdateHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdatePathBoundedTextItemHandler($tenant_id, $update_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdatePathBoundedTextItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_handler_request \Aurigma\DesignAtoms\Model\UpdateHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdatePlainTextItemHandler()

designAtomsViewerUpdatePlainTextItemHandler($tenant_id, $update_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_handler_request = new \Aurigma\DesignAtoms\Model\UpdateHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdatePlainTextItemHandler($tenant_id, $update_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdatePlainTextItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_handler_request \Aurigma\DesignAtoms\Model\UpdateHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

designAtomsViewerUpdateShapeItemHandler()

designAtomsViewerUpdateShapeItemHandler($tenant_id, $update_handler_request): mixed

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new Aurigma\DesignAtoms\Api\DesignAtomsViewerApi(
    // 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()
);
$tenant_id = 56; // int | Tenant identifier
$update_handler_request = new \Aurigma\DesignAtoms\Model\UpdateHandlerRequest(); // \Aurigma\DesignAtoms\Model\UpdateHandlerRequest

try {
    $result = $apiInstance->designAtomsViewerUpdateShapeItemHandler($tenant_id, $update_handler_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DesignAtomsViewerApi->designAtomsViewerUpdateShapeItemHandler: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
tenant_id int Tenant identifier [optional]
update_handler_request \Aurigma\DesignAtoms\Model\UpdateHandlerRequest [optional]

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]