Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 512 Bytes

USERS_API.md

File metadata and controls

25 lines (16 loc) · 512 Bytes

Users API

For detailed usage please see examples for each method.

Get Current User

Retrieves the current user (authorization is required).

<?php

require '../../vendor/autoload.php';

$renderforestClient = new \Renderforest\ApiClient(
    'your-api-key',
    'your-client-id'
);

$currentUser = $renderforestClient->getCurrentUser();

See get current user example

⬆ back to the top