Lists authors associated with this customers account - only for Elucidat resellers
Before using this call, you'll need to authenticate against the API as detailed in Making your first call to the Project API.
All of these examples have simulation mode turned on. Once you are ready to use in a production environment, you can remove the simulation parameter. Any changes will then affect your account.
PHP
<?php
$nonce = get_nonce('https://api.elucidat.com/v2/authors', 'PUBLIC_KEY', 'PRIVATE_KEY');
$headers = auth_headers('PUBLIC_KEY', $nonce);
$fields = array(
'simulation_mode' => 'simulation'
);
$result = call_elucidat($headers, $fields, 'GET', 'https://api.elucidat.com/v2/authors', 'PRIVATE_KEY');
echo ("HTTP status code: " . $result['status'] . "\n");
print_r($result['response']);
Python 3.9
endpoint = '/v2/authors'
method = 'GET'
params = {'simulation_mode': 'simulation'}
data = {}
api = Api(api_root, endpoint, method, params, data, private_key, public_key)
api.call_elucidat()
Response
HTTP status code: 200
Array
(
[0] => Array
(
[first_name] => Test
[last_name] => Author
[email] => author@domain.com
[last_login] => 2023-02-22 12:22:35
[created] => 2023-02-22 12:22:04
[banned] => 0
)
)