POST
/
sandbox
/
directory
import Finch from '@tryfinch/finch-api';

const client = new Finch({
  accessToken: 'My Access Token',
});

async function main() {
  const directories = await client.sandbox.directory.create([{}]);

  console.log(directories);
}

main();
[
  {}
]

Authorizations

Authorization
string
header
required

Please use your Access Token

Body

application/json · any[]

Array of individuals to create. Takes all combined fields from /individual and /employment endpoints. All fields are optional.

Response

200 - application/json
OK

The individuals which were created