API: List Authors

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

Python

Response

 

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
        )

)

Was this article helpful?
0 out of 0 found this helpful

Articles in this section

Request support
Access support that’s tailored to you by getting in touch with our Support Team.
Send us feedback
Do you have a new feature request, or want to tell us about something that works well (or not so well) for you? Get in touch!