All URIs are relative to https://api.iplicit.com, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
getProfile() | GET /api/Profile | Get profile of current session |
getProfile(): \SynergiTech\Iplicit\Model\ProfileRead
Get profile of current session
Can be used to test authentication
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new SynergiTech\Iplicit\Api\ProfileApi(
// 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
);
try {
$result = $apiInstance->getProfile();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ProfileApi->getProfile: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\SynergiTech\Iplicit\Model\ProfileRead
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]