All URIs are relative to https://api.wordlift.io, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
getMe() | GET /accounts/me | Get |
getMe(): \Wordlift\Client\Model\AccountInfo
Get
Get the account data for the current account identified by its key.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: ApiKey
$config = Wordlift\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Wordlift\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Wordlift\Client\Api\AccountApi(
// 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->getMe();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AccountApi->getMe: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\Wordlift\Client\Model\AccountInfo
- Content-Type: Not defined
- Accept:
application/vnd.wordlift.account-info.v2+json
[Back to top] [Back to API list] [Back to Model list] [Back to README]