All URIs are relative to https://kingsrook.localhost-testsubdomain1.infopluswms.com:8443/infoplus-wms/api
Method | HTTP request | Description |
---|---|---|
addPickFaceAssignment | POST /beta/pickFaceAssignment | Create a pickFaceAssignment |
addPickFaceAssignmentAudit | PUT /beta/pickFaceAssignment/{pickFaceAssignmentId}/audit/{pickFaceAssignmentAudit} | Add new audit for a pickFaceAssignment |
addPickFaceAssignmentFile | POST /beta/pickFaceAssignment/{pickFaceAssignmentId}/file/{fileName} | Attach a file to a pickFaceAssignment |
addPickFaceAssignmentFileByURL | POST /beta/pickFaceAssignment/{pickFaceAssignmentId}/file | Attach a file to a pickFaceAssignment by URL. |
addPickFaceAssignmentTag | PUT /beta/pickFaceAssignment/{pickFaceAssignmentId}/tag/{pickFaceAssignmentTag} | Add new tags for a pickFaceAssignment. |
deletePickFaceAssignment | DELETE /beta/pickFaceAssignment/{pickFaceAssignmentId} | Delete a pickFaceAssignment |
deletePickFaceAssignmentFile | DELETE /beta/pickFaceAssignment/{pickFaceAssignmentId}/file/{fileId} | Delete a file for a pickFaceAssignment. |
deletePickFaceAssignmentTag | DELETE /beta/pickFaceAssignment/{pickFaceAssignmentId}/tag/{pickFaceAssignmentTag} | Delete a tag for a pickFaceAssignment. |
getDuplicatePickFaceAssignmentById | GET /beta/pickFaceAssignment/duplicate/{pickFaceAssignmentId} | Get a duplicated a pickFaceAssignment by id |
getPickFaceAssignmentByFilter | GET /beta/pickFaceAssignment/search | Search pickFaceAssignments by filter |
getPickFaceAssignmentById | GET /beta/pickFaceAssignment/{pickFaceAssignmentId} | Get a pickFaceAssignment by id |
getPickFaceAssignmentFiles | GET /beta/pickFaceAssignment/{pickFaceAssignmentId}/file | Get the files for a pickFaceAssignment. |
getPickFaceAssignmentTags | GET /beta/pickFaceAssignment/{pickFaceAssignmentId}/tag | Get the tags for a pickFaceAssignment. |
updatePickFaceAssignment | PUT /beta/pickFaceAssignment | Update a pickFaceAssignment |
updatePickFaceAssignmentCustomFields | PUT /beta/pickFaceAssignment/customFields | Update a pickFaceAssignment custom fields |
\Infoplus\Infoplus\Model\PickFaceAssignment addPickFaceAssignment($body)
Create a pickFaceAssignment
Inserts a new pickFaceAssignment 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\PickFaceAssignmentApi(
// 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\PickFaceAssignment(); // \Infoplus\Infoplus\Model\PickFaceAssignment | PickFaceAssignment to be inserted.
try {
$result = $apiInstance->addPickFaceAssignment($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->addPickFaceAssignment: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\PickFaceAssignment | PickFaceAssignment to be inserted. |
\Infoplus\Infoplus\Model\PickFaceAssignment
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
addPickFaceAssignmentAudit($pick_face_assignment_id, $pick_face_assignment_audit)
Add new audit for a pickFaceAssignment
Adds an audit to an existing pickFaceAssignment.
<?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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to add an audit to
$pick_face_assignment_audit = "pick_face_assignment_audit_example"; // string | The audit to add
try {
$apiInstance->addPickFaceAssignmentAudit($pick_face_assignment_id, $pick_face_assignment_audit);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->addPickFaceAssignmentAudit: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment to add an audit to | |
pick_face_assignment_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]
addPickFaceAssignmentFile($pick_face_assignment_id, $file_name)
Attach a file to a pickFaceAssignment
Adds a file to an existing pickFaceAssignment.
<?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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to add a file to
$file_name = "file_name_example"; // string | Name of file
try {
$apiInstance->addPickFaceAssignmentFile($pick_face_assignment_id, $file_name);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->addPickFaceAssignmentFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment 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]
addPickFaceAssignmentFileByURL($body, $pick_face_assignment_id)
Attach a file to a pickFaceAssignment by URL.
Adds a file to an existing pickFaceAssignment 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\PickFaceAssignmentApi(
// 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.
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to add an file to
try {
$apiInstance->addPickFaceAssignmentFileByURL($body, $pick_face_assignment_id);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->addPickFaceAssignmentFileByURL: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\RecordFile | The url and optionly fileName to be used. | |
pick_face_assignment_id | int | Id of the pickFaceAssignment 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]
addPickFaceAssignmentTag($pick_face_assignment_id, $pick_face_assignment_tag)
Add new tags for a pickFaceAssignment.
Adds a tag to an existing pickFaceAssignment.
<?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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to add a tag to
$pick_face_assignment_tag = "pick_face_assignment_tag_example"; // string | The tag to add
try {
$apiInstance->addPickFaceAssignmentTag($pick_face_assignment_id, $pick_face_assignment_tag);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->addPickFaceAssignmentTag: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment to add a tag to | |
pick_face_assignment_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]
deletePickFaceAssignment($pick_face_assignment_id)
Delete a pickFaceAssignment
Deletes the pickFaceAssignment 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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to be deleted.
try {
$apiInstance->deletePickFaceAssignment($pick_face_assignment_id);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->deletePickFaceAssignment: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment 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]
deletePickFaceAssignmentFile($pick_face_assignment_id, $file_id)
Delete a file for a pickFaceAssignment.
Deletes an existing pickFaceAssignment 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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to remove file from
$file_id = 56; // int | Id of the file to delete
try {
$apiInstance->deletePickFaceAssignmentFile($pick_face_assignment_id, $file_id);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->deletePickFaceAssignmentFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment 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]
deletePickFaceAssignmentTag($pick_face_assignment_id, $pick_face_assignment_tag)
Delete a tag for a pickFaceAssignment.
Deletes an existing pickFaceAssignment 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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to remove tag from
$pick_face_assignment_tag = "pick_face_assignment_tag_example"; // string | The tag to delete
try {
$apiInstance->deletePickFaceAssignmentTag($pick_face_assignment_id, $pick_face_assignment_tag);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->deletePickFaceAssignmentTag: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment to remove tag from | |
pick_face_assignment_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\PickFaceAssignment getDuplicatePickFaceAssignmentById($pick_face_assignment_id)
Get a duplicated a pickFaceAssignment by id
Returns a duplicated pickFaceAssignment 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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to be duplicated.
try {
$result = $apiInstance->getDuplicatePickFaceAssignmentById($pick_face_assignment_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->getDuplicatePickFaceAssignmentById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment to be duplicated. |
\Infoplus\Infoplus\Model\PickFaceAssignment
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\PickFaceAssignment[] getPickFaceAssignmentByFilter($filter, $page, $limit, $sort)
Search pickFaceAssignments by filter
Returns the list of pickFaceAssignments 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\PickFaceAssignmentApi(
// 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->getPickFaceAssignmentByFilter($filter, $page, $limit, $sort);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->getPickFaceAssignmentByFilter: ', $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\PickFaceAssignment[]
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\PickFaceAssignment getPickFaceAssignmentById($pick_face_assignment_id)
Get a pickFaceAssignment by id
Returns the pickFaceAssignment 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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to be returned.
try {
$result = $apiInstance->getPickFaceAssignmentById($pick_face_assignment_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->getPickFaceAssignmentById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment to be returned. |
\Infoplus\Infoplus\Model\PickFaceAssignment
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getPickFaceAssignmentFiles($pick_face_assignment_id)
Get the files for a pickFaceAssignment.
Get all existing pickFaceAssignment 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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to get files for
try {
$apiInstance->getPickFaceAssignmentFiles($pick_face_assignment_id);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->getPickFaceAssignmentFiles: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment 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]
getPickFaceAssignmentTags($pick_face_assignment_id)
Get the tags for a pickFaceAssignment.
Get all existing pickFaceAssignment 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\PickFaceAssignmentApi(
// 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
);
$pick_face_assignment_id = 56; // int | Id of the pickFaceAssignment to get tags for
try {
$apiInstance->getPickFaceAssignmentTags($pick_face_assignment_id);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->getPickFaceAssignmentTags: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
pick_face_assignment_id | int | Id of the pickFaceAssignment 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]
updatePickFaceAssignment($body)
Update a pickFaceAssignment
Updates an existing pickFaceAssignment 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\PickFaceAssignmentApi(
// 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\PickFaceAssignment(); // \Infoplus\Infoplus\Model\PickFaceAssignment | PickFaceAssignment to be updated.
try {
$apiInstance->updatePickFaceAssignment($body);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->updatePickFaceAssignment: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\PickFaceAssignment | PickFaceAssignment 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]
updatePickFaceAssignmentCustomFields($body)
Update a pickFaceAssignment custom fields
Updates an existing pickFaceAssignment 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\PickFaceAssignmentApi(
// 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\PickFaceAssignment(); // \Infoplus\Infoplus\Model\PickFaceAssignment | PickFaceAssignment to be updated.
try {
$apiInstance->updatePickFaceAssignmentCustomFields($body);
} catch (Exception $e) {
echo 'Exception when calling PickFaceAssignmentApi->updatePickFaceAssignmentCustomFields: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\PickFaceAssignment | PickFaceAssignment 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]