All URIs are relative to https://kingsrook.localhost-testsubdomain1.infopluswms.com:8443/infoplus-wms/api
Method | HTTP request | Description |
---|---|---|
addLocationFootprint | POST /beta/locationFootprint | Create a locationFootprint |
addLocationFootprintAudit | PUT /beta/locationFootprint/{locationFootprintId}/audit/{locationFootprintAudit} | Add new audit for a locationFootprint |
addLocationFootprintFile | POST /beta/locationFootprint/{locationFootprintId}/file/{fileName} | Attach a file to a locationFootprint |
addLocationFootprintFileByURL | POST /beta/locationFootprint/{locationFootprintId}/file | Attach a file to a locationFootprint by URL. |
addLocationFootprintTag | PUT /beta/locationFootprint/{locationFootprintId}/tag/{locationFootprintTag} | Add new tags for a locationFootprint. |
deleteLocationFootprint | DELETE /beta/locationFootprint/{locationFootprintId} | Delete a locationFootprint |
deleteLocationFootprintFile | DELETE /beta/locationFootprint/{locationFootprintId}/file/{fileId} | Delete a file for a locationFootprint. |
deleteLocationFootprintTag | DELETE /beta/locationFootprint/{locationFootprintId}/tag/{locationFootprintTag} | Delete a tag for a locationFootprint. |
getDuplicateLocationFootprintById | GET /beta/locationFootprint/duplicate/{locationFootprintId} | Get a duplicated a locationFootprint by id |
getLocationFootprintByFilter | GET /beta/locationFootprint/search | Search locationFootprints by filter |
getLocationFootprintById | GET /beta/locationFootprint/{locationFootprintId} | Get a locationFootprint by id |
getLocationFootprintFiles | GET /beta/locationFootprint/{locationFootprintId}/file | Get the files for a locationFootprint. |
getLocationFootprintTags | GET /beta/locationFootprint/{locationFootprintId}/tag | Get the tags for a locationFootprint. |
updateLocationFootprint | PUT /beta/locationFootprint | Update a locationFootprint |
updateLocationFootprintCustomFields | PUT /beta/locationFootprint/customFields | Update a locationFootprint custom fields |
\Infoplus\Infoplus\Model\LocationFootprint addLocationFootprint($body)
Create a locationFootprint
Inserts a new locationFootprint using the specified data.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$body = new \Infoplus\Infoplus\Model\LocationFootprint(); // \Infoplus\Infoplus\Model\LocationFootprint | LocationFootprint to be inserted.
try {
$result = $apiInstance->addLocationFootprint($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->addLocationFootprint: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\LocationFootprint | LocationFootprint to be inserted. |
\Infoplus\Infoplus\Model\LocationFootprint
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
addLocationFootprintAudit($location_footprint_id, $location_footprint_audit)
Add new audit for a locationFootprint
Adds an audit to an existing locationFootprint.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to add an audit to
$location_footprint_audit = "location_footprint_audit_example"; // string | The audit to add
try {
$apiInstance->addLocationFootprintAudit($location_footprint_id, $location_footprint_audit);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->addLocationFootprintAudit: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to add an audit to | |
location_footprint_audit | string | The audit to add |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
addLocationFootprintFile($location_footprint_id, $file_name)
Attach a file to a locationFootprint
Adds a file to an existing locationFootprint.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to add a file to
$file_name = "file_name_example"; // string | Name of file
try {
$apiInstance->addLocationFootprintFile($location_footprint_id, $file_name);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->addLocationFootprintFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to add a file to | |
file_name | string | Name of file |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
addLocationFootprintFileByURL($body, $location_footprint_id)
Attach a file to a locationFootprint by URL.
Adds a file to an existing locationFootprint by URL.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$body = new \Infoplus\Infoplus\Model\RecordFile(); // \Infoplus\Infoplus\Model\RecordFile | The url and optionly fileName to be used.
$location_footprint_id = 56; // int | Id of the locationFootprint to add an file to
try {
$apiInstance->addLocationFootprintFileByURL($body, $location_footprint_id);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->addLocationFootprintFileByURL: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\RecordFile | The url and optionly fileName to be used. | |
location_footprint_id | int | Id of the locationFootprint to add an file to |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
addLocationFootprintTag($location_footprint_id, $location_footprint_tag)
Add new tags for a locationFootprint.
Adds a tag to an existing locationFootprint.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to add a tag to
$location_footprint_tag = "location_footprint_tag_example"; // string | The tag to add
try {
$apiInstance->addLocationFootprintTag($location_footprint_id, $location_footprint_tag);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->addLocationFootprintTag: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to add a tag to | |
location_footprint_tag | string | The tag to add |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deleteLocationFootprint($location_footprint_id)
Delete a locationFootprint
Deletes the locationFootprint identified by the specified id.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to be deleted.
try {
$apiInstance->deleteLocationFootprint($location_footprint_id);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->deleteLocationFootprint: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to be deleted. |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deleteLocationFootprintFile($location_footprint_id, $file_id)
Delete a file for a locationFootprint.
Deletes an existing locationFootprint file using the specified data.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to remove file from
$file_id = 56; // int | Id of the file to delete
try {
$apiInstance->deleteLocationFootprintFile($location_footprint_id, $file_id);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->deleteLocationFootprintFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to remove file from | |
file_id | int | Id of the file to delete |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deleteLocationFootprintTag($location_footprint_id, $location_footprint_tag)
Delete a tag for a locationFootprint.
Deletes an existing locationFootprint tag using the specified data.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to remove tag from
$location_footprint_tag = "location_footprint_tag_example"; // string | The tag to delete
try {
$apiInstance->deleteLocationFootprintTag($location_footprint_id, $location_footprint_tag);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->deleteLocationFootprintTag: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to remove tag from | |
location_footprint_tag | string | The tag to delete |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\LocationFootprint getDuplicateLocationFootprintById($location_footprint_id)
Get a duplicated a locationFootprint by id
Returns a duplicated locationFootprint identified by the specified id.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to be duplicated.
try {
$result = $apiInstance->getDuplicateLocationFootprintById($location_footprint_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->getDuplicateLocationFootprintById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to be duplicated. |
\Infoplus\Infoplus\Model\LocationFootprint
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\LocationFootprint[] getLocationFootprintByFilter($filter, $page, $limit, $sort)
Search locationFootprints by filter
Returns the list of locationFootprints that match the given filter.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$filter = "filter_example"; // string | Query string, used to filter results.
$page = 56; // int | Result page number. Defaults to 1.
$limit = 56; // int | Maximum results per page. Defaults to 20. Max allowed value is 250.
$sort = "sort_example"; // string | Sort results by specified field.
try {
$result = $apiInstance->getLocationFootprintByFilter($filter, $page, $limit, $sort);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->getLocationFootprintByFilter: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
filter | string | Query string, used to filter results. | [optional] |
page | int | Result page number. Defaults to 1. | [optional] |
limit | int | Maximum results per page. Defaults to 20. Max allowed value is 250. | [optional] |
sort | string | Sort results by specified field. | [optional] |
\Infoplus\Infoplus\Model\LocationFootprint[]
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\LocationFootprint getLocationFootprintById($location_footprint_id)
Get a locationFootprint by id
Returns the locationFootprint identified by the specified id.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to be returned.
try {
$result = $apiInstance->getLocationFootprintById($location_footprint_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->getLocationFootprintById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to be returned. |
\Infoplus\Infoplus\Model\LocationFootprint
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getLocationFootprintFiles($location_footprint_id)
Get the files for a locationFootprint.
Get all existing locationFootprint files.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to get files for
try {
$apiInstance->getLocationFootprintFiles($location_footprint_id);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->getLocationFootprintFiles: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to get files for |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getLocationFootprintTags($location_footprint_id)
Get the tags for a locationFootprint.
Get all existing locationFootprint tags.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$location_footprint_id = 56; // int | Id of the locationFootprint to get tags for
try {
$apiInstance->getLocationFootprintTags($location_footprint_id);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->getLocationFootprintTags: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
location_footprint_id | int | Id of the locationFootprint to get tags for |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updateLocationFootprint($body)
Update a locationFootprint
Updates an existing locationFootprint using the specified data.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$body = new \Infoplus\Infoplus\Model\LocationFootprint(); // \Infoplus\Infoplus\Model\LocationFootprint | LocationFootprint to be updated.
try {
$apiInstance->updateLocationFootprint($body);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->updateLocationFootprint: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\LocationFootprint | LocationFootprint to be updated. |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updateLocationFootprintCustomFields($body)
Update a locationFootprint custom fields
Updates an existing locationFootprint custom fields using the specified data.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Infoplus\Configuration::getDefaultConfiguration()->setApiKey('API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Infoplus\Configuration::getDefaultConfiguration()->setApiKeyPrefix('API-Key', 'Bearer');
$apiInstance = new Infoplus\Api\LocationFootprintApi(
// 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(),
$config
);
$body = new \Infoplus\Infoplus\Model\LocationFootprint(); // \Infoplus\Infoplus\Model\LocationFootprint | LocationFootprint to be updated.
try {
$apiInstance->updateLocationFootprintCustomFields($body);
} catch (Exception $e) {
echo 'Exception when calling LocationFootprintApi->updateLocationFootprintCustomFields: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\LocationFootprint | LocationFootprint to be updated. |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]