All URIs are relative to https://kingsrook.localhost-testsubdomain1.infopluswms.com:8443/infoplus-wms/api
Method | HTTP request | Description |
---|---|---|
addInvoiceWorksheetLine | POST /beta/invoiceWorksheetLine | Create an invoiceWorksheetLine |
addInvoiceWorksheetLineAudit | PUT /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/audit/{invoiceWorksheetLineAudit} | Add new audit for an invoiceWorksheetLine |
addInvoiceWorksheetLineFile | POST /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/file/{fileName} | Attach a file to an invoiceWorksheetLine |
addInvoiceWorksheetLineFileByURL | POST /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/file | Attach a file to an invoiceWorksheetLine by URL. |
addInvoiceWorksheetLineTag | PUT /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag/{invoiceWorksheetLineTag} | Add new tags for an invoiceWorksheetLine. |
deleteInvoiceWorksheetLine | DELETE /beta/invoiceWorksheetLine/{invoiceWorksheetLineId} | Delete an invoiceWorksheetLine |
deleteInvoiceWorksheetLineFile | DELETE /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/file/{fileId} | Delete a file for an invoiceWorksheetLine. |
deleteInvoiceWorksheetLineTag | DELETE /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag/{invoiceWorksheetLineTag} | Delete a tag for an invoiceWorksheetLine. |
getDuplicateInvoiceWorksheetLineById | GET /beta/invoiceWorksheetLine/duplicate/{invoiceWorksheetLineId} | Get a duplicated an invoiceWorksheetLine by id |
getInvoiceWorksheetLineByFilter | GET /beta/invoiceWorksheetLine/search | Search invoiceWorksheetLines by filter |
getInvoiceWorksheetLineById | GET /beta/invoiceWorksheetLine/{invoiceWorksheetLineId} | Get an invoiceWorksheetLine by id |
getInvoiceWorksheetLineFiles | GET /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/file | Get the files for an invoiceWorksheetLine. |
getInvoiceWorksheetLineTags | GET /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag | Get the tags for an invoiceWorksheetLine. |
updateInvoiceWorksheetLine | PUT /beta/invoiceWorksheetLine | Update an invoiceWorksheetLine |
\Infoplus\Infoplus\Model\InvoiceWorksheetLine addInvoiceWorksheetLine($body)
Create an invoiceWorksheetLine
Inserts a new invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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\InvoiceWorksheetLine(); // \Infoplus\Infoplus\Model\InvoiceWorksheetLine | InvoiceWorksheetLine to be inserted.
try {
$result = $apiInstance->addInvoiceWorksheetLine($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->addInvoiceWorksheetLine: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\InvoiceWorksheetLine | InvoiceWorksheetLine to be inserted. |
\Infoplus\Infoplus\Model\InvoiceWorksheetLine
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
addInvoiceWorksheetLineAudit($invoice_worksheet_line_id, $invoice_worksheet_line_audit)
Add new audit for an invoiceWorksheetLine
Adds an audit to an existing invoiceWorksheetLine.
<?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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to add an audit to
$invoice_worksheet_line_audit = "invoice_worksheet_line_audit_example"; // string | The audit to add
try {
$apiInstance->addInvoiceWorksheetLineAudit($invoice_worksheet_line_id, $invoice_worksheet_line_audit);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->addInvoiceWorksheetLineAudit: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine to add an audit to | |
invoice_worksheet_line_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]
addInvoiceWorksheetLineFile($invoice_worksheet_line_id, $file_name)
Attach a file to an invoiceWorksheetLine
Adds a file to an existing invoiceWorksheetLine.
<?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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to add a file to
$file_name = "file_name_example"; // string | Name of file
try {
$apiInstance->addInvoiceWorksheetLineFile($invoice_worksheet_line_id, $file_name);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->addInvoiceWorksheetLineFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine 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]
addInvoiceWorksheetLineFileByURL($body, $invoice_worksheet_line_id)
Attach a file to an invoiceWorksheetLine by URL.
Adds a file to an existing invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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.
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to add an file to
try {
$apiInstance->addInvoiceWorksheetLineFileByURL($body, $invoice_worksheet_line_id);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->addInvoiceWorksheetLineFileByURL: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\RecordFile | The url and optionly fileName to be used. | |
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine 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]
addInvoiceWorksheetLineTag($invoice_worksheet_line_id, $invoice_worksheet_line_tag)
Add new tags for an invoiceWorksheetLine.
Adds a tag to an existing invoiceWorksheetLine.
<?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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to add a tag to
$invoice_worksheet_line_tag = "invoice_worksheet_line_tag_example"; // string | The tag to add
try {
$apiInstance->addInvoiceWorksheetLineTag($invoice_worksheet_line_id, $invoice_worksheet_line_tag);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->addInvoiceWorksheetLineTag: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine to add a tag to | |
invoice_worksheet_line_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]
deleteInvoiceWorksheetLine($invoice_worksheet_line_id)
Delete an invoiceWorksheetLine
Deletes the invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to be deleted.
try {
$apiInstance->deleteInvoiceWorksheetLine($invoice_worksheet_line_id);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->deleteInvoiceWorksheetLine: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine 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]
deleteInvoiceWorksheetLineFile($invoice_worksheet_line_id, $file_id)
Delete a file for an invoiceWorksheetLine.
Deletes an existing invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to remove file from
$file_id = 56; // int | Id of the file to delete
try {
$apiInstance->deleteInvoiceWorksheetLineFile($invoice_worksheet_line_id, $file_id);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->deleteInvoiceWorksheetLineFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine 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]
deleteInvoiceWorksheetLineTag($invoice_worksheet_line_id, $invoice_worksheet_line_tag)
Delete a tag for an invoiceWorksheetLine.
Deletes an existing invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to remove tag from
$invoice_worksheet_line_tag = "invoice_worksheet_line_tag_example"; // string | The tag to delete
try {
$apiInstance->deleteInvoiceWorksheetLineTag($invoice_worksheet_line_id, $invoice_worksheet_line_tag);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->deleteInvoiceWorksheetLineTag: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine to remove tag from | |
invoice_worksheet_line_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\InvoiceWorksheetLine getDuplicateInvoiceWorksheetLineById($invoice_worksheet_line_id)
Get a duplicated an invoiceWorksheetLine by id
Returns a duplicated invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to be duplicated.
try {
$result = $apiInstance->getDuplicateInvoiceWorksheetLineById($invoice_worksheet_line_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->getDuplicateInvoiceWorksheetLineById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine to be duplicated. |
\Infoplus\Infoplus\Model\InvoiceWorksheetLine
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\InvoiceWorksheetLine[] getInvoiceWorksheetLineByFilter($filter, $page, $limit, $sort)
Search invoiceWorksheetLines by filter
Returns the list of invoiceWorksheetLines 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\InvoiceWorksheetLineApi(
// 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->getInvoiceWorksheetLineByFilter($filter, $page, $limit, $sort);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->getInvoiceWorksheetLineByFilter: ', $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\InvoiceWorksheetLine[]
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Infoplus\Infoplus\Model\InvoiceWorksheetLine getInvoiceWorksheetLineById($invoice_worksheet_line_id)
Get an invoiceWorksheetLine by id
Returns the invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to be returned.
try {
$result = $apiInstance->getInvoiceWorksheetLineById($invoice_worksheet_line_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->getInvoiceWorksheetLineById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine to be returned. |
\Infoplus\Infoplus\Model\InvoiceWorksheetLine
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getInvoiceWorksheetLineFiles($invoice_worksheet_line_id)
Get the files for an invoiceWorksheetLine.
Get all existing invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to get files for
try {
$apiInstance->getInvoiceWorksheetLineFiles($invoice_worksheet_line_id);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->getInvoiceWorksheetLineFiles: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine 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]
getInvoiceWorksheetLineTags($invoice_worksheet_line_id)
Get the tags for an invoiceWorksheetLine.
Get all existing invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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
);
$invoice_worksheet_line_id = 56; // int | Id of the invoiceWorksheetLine to get tags for
try {
$apiInstance->getInvoiceWorksheetLineTags($invoice_worksheet_line_id);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->getInvoiceWorksheetLineTags: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
invoice_worksheet_line_id | int | Id of the invoiceWorksheetLine 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]
updateInvoiceWorksheetLine($body)
Update an invoiceWorksheetLine
Updates an existing invoiceWorksheetLine 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\InvoiceWorksheetLineApi(
// 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\InvoiceWorksheetLine(); // \Infoplus\Infoplus\Model\InvoiceWorksheetLine | InvoiceWorksheetLine to be updated.
try {
$apiInstance->updateInvoiceWorksheetLine($body);
} catch (Exception $e) {
echo 'Exception when calling InvoiceWorksheetLineApi->updateInvoiceWorksheetLine: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Infoplus\Infoplus\Model\InvoiceWorksheetLine | InvoiceWorksheetLine 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]