All URIs are relative to https://kingsrook.localhost-testsubdomain1.infopluswms.com:8443/infoplus-wms/api
Method | HTTP request | Description |
---|---|---|
addManageScheduledPlans | POST /beta/manageScheduledPlans | Create a manageScheduledPlans |
addManageScheduledPlansAudit | PUT /beta/manageScheduledPlans/{manageScheduledPlansId}/audit/{manageScheduledPlansAudit} | Add new audit for a manageScheduledPlans |
addManageScheduledPlansFile | POST /beta/manageScheduledPlans/{manageScheduledPlansId}/file/{fileName} | Attach a file to a manageScheduledPlans |
addManageScheduledPlansFileByURL | POST /beta/manageScheduledPlans/{manageScheduledPlansId}/file | Attach a file to a manageScheduledPlans by URL. |
addManageScheduledPlansTag | PUT /beta/manageScheduledPlans/{manageScheduledPlansId}/tag/{manageScheduledPlansTag} | Add new tags for a manageScheduledPlans. |
deleteManageScheduledPlans | DELETE /beta/manageScheduledPlans/{manageScheduledPlansId} | Delete a manageScheduledPlans |
deleteManageScheduledPlansFile | DELETE /beta/manageScheduledPlans/{manageScheduledPlansId}/file/{fileId} | Delete a file for a manageScheduledPlans. |
deleteManageScheduledPlansTag | DELETE /beta/manageScheduledPlans/{manageScheduledPlansId}/tag/{manageScheduledPlansTag} | Delete a tag for a manageScheduledPlans. |
getDuplicateManageScheduledPlansById | GET /beta/manageScheduledPlans/duplicate/{manageScheduledPlansId} | Get a duplicated a manageScheduledPlans by id |
getManageScheduledPlansByFilter | GET /beta/manageScheduledPlans/search | Search manageScheduledPlanses by filter |
getManageScheduledPlansById | GET /beta/manageScheduledPlans/{manageScheduledPlansId} | Get a manageScheduledPlans by id |
getManageScheduledPlansFiles | GET /beta/manageScheduledPlans/{manageScheduledPlansId}/file | Get the files for a manageScheduledPlans. |
getManageScheduledPlansTags | GET /beta/manageScheduledPlans/{manageScheduledPlansId}/tag | Get the tags for a manageScheduledPlans. |
updateManageScheduledPlans | PUT /beta/manageScheduledPlans | Update a manageScheduledPlans |
\Infoplus\Infoplus\Model\ManageScheduledPlans addManageScheduledPlans($body)
Create a manageScheduledPlans
Inserts a new manageScheduledPlans 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\ManageScheduledPlansApi(
// 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\ManageScheduledPlans(); // \Infoplus\Infoplus\Model\ManageScheduledPlans | ManageScheduledPlans to be inserted.
try {
$result = $apiInstance->addManageScheduledPlans($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->addManageScheduledPlans: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\ManageScheduledPlans | ManageScheduledPlans to be inserted. |
\Infoplus\Infoplus\Model\ManageScheduledPlans
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
addManageScheduledPlansAudit($manage_scheduled_plans_id, $manage_scheduled_plans_audit)
Add new audit for a manageScheduledPlans
Adds an audit to an existing manageScheduledPlans.
<?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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to add an audit to
$manage_scheduled_plans_audit = "manage_scheduled_plans_audit_example"; // string | The audit to add
try {
$apiInstance->addManageScheduledPlansAudit($manage_scheduled_plans_id, $manage_scheduled_plans_audit);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->addManageScheduledPlansAudit: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans to add an audit to | |
manage_scheduled_plans_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]
addManageScheduledPlansFile($manage_scheduled_plans_id, $file_name)
Attach a file to a manageScheduledPlans
Adds a file to an existing manageScheduledPlans.
<?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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to add a file to
$file_name = "file_name_example"; // string | Name of file
try {
$apiInstance->addManageScheduledPlansFile($manage_scheduled_plans_id, $file_name);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->addManageScheduledPlansFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans 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]
addManageScheduledPlansFileByURL($body, $manage_scheduled_plans_id)
Attach a file to a manageScheduledPlans by URL.
Adds a file to an existing manageScheduledPlans 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\ManageScheduledPlansApi(
// 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.
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to add an file to
try {
$apiInstance->addManageScheduledPlansFileByURL($body, $manage_scheduled_plans_id);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->addManageScheduledPlansFileByURL: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\RecordFile | The url and optionly fileName to be used. | |
manage_scheduled_plans_id | int | Id of the manageScheduledPlans 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]
addManageScheduledPlansTag($manage_scheduled_plans_id, $manage_scheduled_plans_tag)
Add new tags for a manageScheduledPlans.
Adds a tag to an existing manageScheduledPlans.
<?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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to add a tag to
$manage_scheduled_plans_tag = "manage_scheduled_plans_tag_example"; // string | The tag to add
try {
$apiInstance->addManageScheduledPlansTag($manage_scheduled_plans_id, $manage_scheduled_plans_tag);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->addManageScheduledPlansTag: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans to add a tag to | |
manage_scheduled_plans_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]
deleteManageScheduledPlans($manage_scheduled_plans_id)
Delete a manageScheduledPlans
Deletes the manageScheduledPlans 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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to be deleted.
try {
$apiInstance->deleteManageScheduledPlans($manage_scheduled_plans_id);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->deleteManageScheduledPlans: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans 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]
deleteManageScheduledPlansFile($manage_scheduled_plans_id, $file_id)
Delete a file for a manageScheduledPlans.
Deletes an existing manageScheduledPlans 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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to remove file from
$file_id = 56; // int | Id of the file to delete
try {
$apiInstance->deleteManageScheduledPlansFile($manage_scheduled_plans_id, $file_id);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->deleteManageScheduledPlansFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans 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]
deleteManageScheduledPlansTag($manage_scheduled_plans_id, $manage_scheduled_plans_tag)
Delete a tag for a manageScheduledPlans.
Deletes an existing manageScheduledPlans 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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to remove tag from
$manage_scheduled_plans_tag = "manage_scheduled_plans_tag_example"; // string | The tag to delete
try {
$apiInstance->deleteManageScheduledPlansTag($manage_scheduled_plans_id, $manage_scheduled_plans_tag);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->deleteManageScheduledPlansTag: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans to remove tag from | |
manage_scheduled_plans_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\ManageScheduledPlans getDuplicateManageScheduledPlansById($manage_scheduled_plans_id)
Get a duplicated a manageScheduledPlans by id
Returns a duplicated manageScheduledPlans 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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to be duplicated.
try {
$result = $apiInstance->getDuplicateManageScheduledPlansById($manage_scheduled_plans_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->getDuplicateManageScheduledPlansById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans to be duplicated. |
\Infoplus\Infoplus\Model\ManageScheduledPlans
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\ManageScheduledPlans[] getManageScheduledPlansByFilter($filter, $page, $limit, $sort)
Search manageScheduledPlanses by filter
Returns the list of manageScheduledPlanses 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\ManageScheduledPlansApi(
// 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->getManageScheduledPlansByFilter($filter, $page, $limit, $sort);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->getManageScheduledPlansByFilter: ', $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\ManageScheduledPlans[]
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\ManageScheduledPlans getManageScheduledPlansById($manage_scheduled_plans_id)
Get a manageScheduledPlans by id
Returns the manageScheduledPlans 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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to be returned.
try {
$result = $apiInstance->getManageScheduledPlansById($manage_scheduled_plans_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->getManageScheduledPlansById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans to be returned. |
\Infoplus\Infoplus\Model\ManageScheduledPlans
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getManageScheduledPlansFiles($manage_scheduled_plans_id)
Get the files for a manageScheduledPlans.
Get all existing manageScheduledPlans 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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to get files for
try {
$apiInstance->getManageScheduledPlansFiles($manage_scheduled_plans_id);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->getManageScheduledPlansFiles: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans 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]
getManageScheduledPlansTags($manage_scheduled_plans_id)
Get the tags for a manageScheduledPlans.
Get all existing manageScheduledPlans 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\ManageScheduledPlansApi(
// 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
);
$manage_scheduled_plans_id = 56; // int | Id of the manageScheduledPlans to get tags for
try {
$apiInstance->getManageScheduledPlansTags($manage_scheduled_plans_id);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->getManageScheduledPlansTags: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
manage_scheduled_plans_id | int | Id of the manageScheduledPlans 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]
updateManageScheduledPlans($body)
Update a manageScheduledPlans
Updates an existing manageScheduledPlans 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\ManageScheduledPlansApi(
// 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\ManageScheduledPlans(); // \Infoplus\Infoplus\Model\ManageScheduledPlans | ManageScheduledPlans to be updated.
try {
$apiInstance->updateManageScheduledPlans($body);
} catch (Exception $e) {
echo 'Exception when calling ManageScheduledPlansApi->updateManageScheduledPlans: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\ManageScheduledPlans | ManageScheduledPlans 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]