Team

createTeam(options)

Creates a new team with the specified options.

import NeucronSDK from "./src/neucron-sdk.js";

const neucronSDK = new NeucronSDK();
await neucronSDK.authentication.login({
  email: 'your_email@example.com',
  password: 'your_password'
});

const options = {
  email: "team_member_email@example.com",
  team_desc: "Team Description",
  team_name: "YourTeamName"
};
const response = await neucronSDK.team.createTeam(options);

console.log(response);

getTeamList()

Gets a list of teams.

updateTeamKyb(options)

Updates the KYB (Know Your Business) information for a team.

getTeamKybDetail(options)

Gets the KYB details for a team.

Replace 'your_email@example.com', 'your_password', and 'team_id_placeholder' with your actual credentials and team IDs when using the documentation.

Last updated