All URIs are relative to https://penapi.pacnetconnect.com
Method | HTTP request | Description |
---|---|---|
inventoryLinksContract | POST /1.0.0/inventory/links/{linkid}/contract | Create new Contract on specified link |
inventoryLinksContractGet | GET /1.0.0/inventory/links/{linkid}/contract/{contractid} | Get active Contract by ContractID |
inventoryLinksContractPut | PUT /1.0.0/inventory/links/{linkid}/contract/{contractid} | Update active Contract by ContractID |
SuccessFragment inventoryLinksContract($linkid, $createcontractrequest)
Create new Contract on specified link
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oAuth2
$config = tpn\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new tpn\Api\ContractsApi(
// 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
);
$linkid = 'linkid_example'; // string | Unique identifier representing a specific link
$createcontractrequest = new \tpn\Model\Createcontractrequest(); // \tpn\Model\Createcontractrequest |
try {
$result = $apiInstance->inventoryLinksContract($linkid, $createcontractrequest);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ContractsApi->inventoryLinksContract: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
linkid | string | Unique identifier representing a specific link | |
createcontractrequest | \tpn\Model\Createcontractrequest | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\tpn\Model\InlineResponse2006 inventoryLinksContractGet($linkid, $contractid)
Get active Contract by ContractID
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oAuth2
$config = tpn\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new tpn\Api\ContractsApi(
// 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
);
$linkid = 'linkid_example'; // string | Unique identifier representing a specific link
$contractid = 'contractid_example'; // string | Unique identifier representing a specific contract
try {
$result = $apiInstance->inventoryLinksContractGet($linkid, $contractid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ContractsApi->inventoryLinksContractGet: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
linkid | string | Unique identifier representing a specific link | |
contractid | string | Unique identifier representing a specific contract |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SuccessFragment inventoryLinksContractPut($linkid, $contractid, $body)
Update active Contract by ContractID
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oAuth2
$config = tpn\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new tpn\Api\ContractsApi(
// 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
);
$linkid = 'linkid_example'; // string | Unique identifier representing a specific link
$contractid = 'contractid_example'; // string | Unique identifier representing a specific contract
$body = new \tpn\Model\Body(); // \tpn\Model\Body |
try {
$result = $apiInstance->inventoryLinksContractPut($linkid, $contractid, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ContractsApi->inventoryLinksContractPut: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
linkid | string | Unique identifier representing a specific link | |
contractid | string | Unique identifier representing a specific contract | |
body | \tpn\Model\Body | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]