All URIs are relative to https://penapi.pacnetconnect.com
Method | HTTP request | Description |
---|---|---|
generateToken | POST /1.0.0/auth/generatetoken | Create an authentication token |
validateToken | GET /1.0.0/auth/validatetoken | Validate authentication token |
\tpn\Model\InlineResponse20015 generateToken($grant_type, $username, $password)
Create an authentication token
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new tpn\Api\AuthenticationApi(
// 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()
);
$grant_type = 'password'; // string |
$username = 'username_example'; // string |
$password = 'password_example'; // string |
try {
$result = $apiInstance->generateToken($grant_type, $username, $password);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AuthenticationApi->generateToken: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
grant_type | string | [default to 'password'] | |
username | string | ||
password | string |
\tpn\Model\InlineResponse20015
No authorization required
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\tpn\Model\InlineResponse20016 validateToken()
Validate authentication token
Validate the authentication token and get information about the user (roles, permissions, etc.)
<?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\AuthenticationApi(
// 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
);
try {
$result = $apiInstance->validateToken();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AuthenticationApi->validateToken: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
\tpn\Model\InlineResponse20016
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]