All URIs are relative to https://api.iplicit.com, except if the operation defines another base path.
| Method | HTTP request | Description |
|---|---|---|
| getContactGroup() | GET /api/ContactGroup/{contactGroupRef} | Get a contact group |
getContactGroup($contactGroupRef, $include): \SynergiTech\Iplicit\Model\ContactGroupReadGet a contact group
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new SynergiTech\Iplicit\Api\ContactGroupApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
config: $config
);
$contactGroupRef = 'contactGroupRef_example'; // string | Id or code of the contact group
$include = 'customer,supplier'; // string | Comma separated list of details to include: Permitted values are `customer`, `supplier` or `customer,supplier` (the default)
try {
$result = $apiInstance->getContactGroup($contactGroupRef, $include);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ContactGroupApi->getContactGroup: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| contactGroupRef | string | Id or code of the contact group | |
| include | string | Comma separated list of details to include: Permitted values are `customer`, `supplier` or `customer,supplier` (the default) | [optional] [default to 'customer,supplier'] |
\SynergiTech\Iplicit\Model\ContactGroupRead
No authorization required
- Content-Type: Not defined
- Accept:
text/plain,application/json,text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]