Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 469 Bytes

USERS_API.md

File metadata and controls

20 lines (13 loc) · 469 Bytes

Users API

Get Current User

Retrieves the current user.

const RenderforestClient = require('@renderforest/sdk-node')

const Renderforest = new RenderforestClient({ signKey: 'signKey', clientId: -1 })

Renderforest.getCurrentUser()
  .then(console.log) // handle the success
  .catch(console.error) // handle the error

See example

⬆ back to the top