Create a managed user

Create a new Northstake user managed by the account

import { NorthstakeApi } from '@northstake/northstakeapi';
const api = new NorthstakeApi('apiKey', 'privateKey')

const newUser = {reference_user_id: 'user-id'}
const {body: result} = await api.managedUsers.createUser(newUser)
Language
Click Try It! to start a request and see the response here!