All URIs are relative to http://localhost, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
legacyFinanceAddContact() | POST /apps/api/kronos.finance.addContact | Create a new contact. |
legacyFinanceGetAccountStatement() | GET /apps/api/kronos.finance.getAccountStatement | Get Account Statement information for a contact. |
legacyFinanceGetAccountStatementByExternalId() | GET /apps/api/kronos.finance.getAccountStatementByExternalId | Get Account Statement information for a contact. |
legacyFinanceGetAssetDetail() | GET /apps/api/kronos.finance.getAssetDetail | Get asset detail with transactions. |
legacyFinanceGetContact() | GET /apps/api/kronos.finance.getContact | Get complete data for a contact. |
legacyFinanceGetContactList() | GET /apps/api/kronos.finance.getContactList | Get a list of all contacts. |
legacyFinanceGetLiabilities() | GET /apps/api/kronos.finance.getLiabilities | Get Liabilities information for a contact. |
legacyFinanceUpdateContact() | POST /apps/api/kronos.finance.updateContact | Update a contact. |
legacyFinanceAddContact($kronosFinanceContactPayloadRequest): \Equisoft\SDK\EquisoftConnect\Model\LegacyAddUpdateResponse
Create a new contact.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Equisoft\SDK\EquisoftConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Equisoft\SDK\EquisoftConnect\Api\LegacyFinanceApi(
// 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
);
$kronosFinanceContactPayloadRequest = new \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceContactPayloadRequest(); // \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceContactPayloadRequest
try {
$result = $apiInstance->legacyFinanceAddContact($kronosFinanceContactPayloadRequest);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LegacyFinanceApi->legacyFinanceAddContact: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
kronosFinanceContactPayloadRequest | \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceContactPayloadRequest |
\Equisoft\SDK\EquisoftConnect\Model\LegacyAddUpdateResponse
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
legacyFinanceGetAccountStatement($contactId, $includeUnmanagedAssets, $fetchOwnedAndInsuredPolicies): \Equisoft\SDK\EquisoftConnect\Model\LegacyFinanceGetAccountStatementResponse
Get Account Statement information for a contact.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Equisoft\SDK\EquisoftConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Equisoft\SDK\EquisoftConnect\Api\LegacyFinanceApi(
// 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
);
$contactId = 'contactId_example'; // string | Contact identifier.
$includeUnmanagedAssets = True; // bool | Include unmagned assets. Default: false.
$fetchOwnedAndInsuredPolicies = True; // bool | Fetch policies by both owner and insured. Default: false.
try {
$result = $apiInstance->legacyFinanceGetAccountStatement($contactId, $includeUnmanagedAssets, $fetchOwnedAndInsuredPolicies);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LegacyFinanceApi->legacyFinanceGetAccountStatement: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
contactId | string | Contact identifier. | |
includeUnmanagedAssets | bool | Include unmagned assets. Default: false. | [optional] |
fetchOwnedAndInsuredPolicies | bool | Fetch policies by both owner and insured. Default: false. | [optional] |
\Equisoft\SDK\EquisoftConnect\Model\LegacyFinanceGetAccountStatementResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
legacyFinanceGetAccountStatementByExternalId($externalId, $includeUnmanagedAssets): \Equisoft\SDK\EquisoftConnect\Model\LegacyFinanceGetAccountStatementResponse
Get Account Statement information for a contact.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Equisoft\SDK\EquisoftConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Equisoft\SDK\EquisoftConnect\Api\LegacyFinanceApi(
// 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
);
$externalId = 'externalId_example'; // string | External id for the contact in the current consumer.
$includeUnmanagedAssets = True; // bool | Include unmagned assets. Default: false.
try {
$result = $apiInstance->legacyFinanceGetAccountStatementByExternalId($externalId, $includeUnmanagedAssets);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LegacyFinanceApi->legacyFinanceGetAccountStatementByExternalId: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
externalId | string | External id for the contact in the current consumer. | |
includeUnmanagedAssets | bool | Include unmagned assets. Default: false. | [optional] |
\Equisoft\SDK\EquisoftConnect\Model\LegacyFinanceGetAccountStatementResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
legacyFinanceGetAssetDetail($assetId): \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceAssetDetail
Get asset detail with transactions.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Equisoft\SDK\EquisoftConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Equisoft\SDK\EquisoftConnect\Api\LegacyFinanceApi(
// 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
);
$assetId = 'assetId_example'; // string | Identifier of the account product.
try {
$result = $apiInstance->legacyFinanceGetAssetDetail($assetId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LegacyFinanceApi->legacyFinanceGetAssetDetail: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
assetId | string | Identifier of the account product. |
\Equisoft\SDK\EquisoftConnect\Model\KronosFinanceAssetDetail
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
legacyFinanceGetContact($id): \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceGetContactResponse
Get complete data for a contact.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Equisoft\SDK\EquisoftConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Equisoft\SDK\EquisoftConnect\Api\LegacyFinanceApi(
// 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
);
$id = 'id_example'; // string | Contact identifier.
try {
$result = $apiInstance->legacyFinanceGetContact($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LegacyFinanceApi->legacyFinanceGetContact: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | string | Contact identifier. |
\Equisoft\SDK\EquisoftConnect\Model\KronosFinanceGetContactResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
legacyFinanceGetContactList($lastModifiedTime, $optionPayload): \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceGetContactList
Get a list of all contacts.
This will return basic information about the contact. To get the complete record of a contact, you need to use the kronos.contact.get method.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Equisoft\SDK\EquisoftConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Equisoft\SDK\EquisoftConnect\Api\LegacyFinanceApi(
// 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
);
$lastModifiedTime = 'lastModifiedTime_example'; // string | To Fetch all documents, which got modified / created after specified date. If the value \"auto\" is used, the last access date to this method will be used. Set the value to \"reset\" to reset the last access date.
$optionPayload = new \Equisoft\SDK\EquisoftConnect\Model\LegacyContactGetListOptions(); // LegacyContactGetListOptions | Object containing the options to filter the list of contacts.
try {
$result = $apiInstance->legacyFinanceGetContactList($lastModifiedTime, $optionPayload);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LegacyFinanceApi->legacyFinanceGetContactList: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
lastModifiedTime | string | To Fetch all documents, which got modified / created after specified date. If the value "auto" is used, the last access date to this method will be used. Set the value to "reset" to reset the last access date. | [optional] |
optionPayload | LegacyContactGetListOptions | Object containing the options to filter the list of contacts. | [optional] |
\Equisoft\SDK\EquisoftConnect\Model\KronosFinanceGetContactList
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
legacyFinanceGetLiabilities($contactId): \Equisoft\SDK\EquisoftConnect\Model\LegacyFinanceGetLiabilitiesResponse
Get Liabilities information for a contact.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Equisoft\SDK\EquisoftConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Equisoft\SDK\EquisoftConnect\Api\LegacyFinanceApi(
// 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
);
$contactId = 'contactId_example'; // string | Contact identifier.
try {
$result = $apiInstance->legacyFinanceGetLiabilities($contactId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LegacyFinanceApi->legacyFinanceGetLiabilities: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
contactId | string | Contact identifier. |
\Equisoft\SDK\EquisoftConnect\Model\LegacyFinanceGetLiabilitiesResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
legacyFinanceUpdateContact($kronosFinanceContactPayloadRequest): \Equisoft\SDK\EquisoftConnect\Model\LegacyAddUpdateResponse
Update a contact.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Equisoft\SDK\EquisoftConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Equisoft\SDK\EquisoftConnect\Api\LegacyFinanceApi(
// 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
);
$kronosFinanceContactPayloadRequest = new \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceContactPayloadRequest(); // \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceContactPayloadRequest
try {
$result = $apiInstance->legacyFinanceUpdateContact($kronosFinanceContactPayloadRequest);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LegacyFinanceApi->legacyFinanceUpdateContact: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
kronosFinanceContactPayloadRequest | \Equisoft\SDK\EquisoftConnect\Model\KronosFinanceContactPayloadRequest |
\Equisoft\SDK\EquisoftConnect\Model\LegacyAddUpdateResponse
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]