Skip to main content

Phase 2: Personnel Management

Personnel must be added AFTER organization registration. Each person added also creates an individual customer record with login credentials.

Personnel Types

TypeDescriptionCreates Individual Record
DirectorsBoard members (verification required)✅ Yes
ShareholdersOwnership stakeholders✅ Yes (for individuals)
EmployeesOperations staff with specific roles✅ Yes
First Employee Rule: The first employee added to an organization MUST have the ADMIN_USER role. Without this role, the request will fail with a 400 error.

Add Director

Directors are automatically created as individual customers with temporary passwords.
Endpoint: POST /api/v2.1/customer/organization/{organizationId}/directorHeaders:
Authorization: Bearer {admin-jwt-token}
Content-Type: application/json
Request Body:
{
  "tenantId": "97e7ff29-15f3-49ef-9681-3bbfcce4f6cd",
  "organizationId": "org-880e8400-e29b-41d4-a716-446655440110",
  "email": "[email protected]",
  "firstName": "Michael",
  "middleName": "Robert",
  "lastName": "Brown",
  "dateOfBirth": "1970-09-25",
  "nationality": "GB",
  "phoneNumber": "+442071234572",
  "position": "Board Director",
  "directorType": "NON_EXECUTIVE",
  "appointmentDate": "2010-06-01",
  "isPEP": false,
  "ownershipPercentage": 0,
  "address": {
    "street": "321 Director Avenue",
    "city": "London",
    "postalCode": "EC3A 1BB",
    "country": "GB"
  },
  "identificationDocument": {
    "type": "PASSPORT",
    "number": "GB987654321",
    "issuingCountry": "GB",
    "expiryDate": "2030-12-31"
  }
}

Director Types

TypeDescription
EXECUTIVEFull-time executive director
NON_EXECUTIVEPart-time non-executive director
MANAGINGManaging director
CHAIRMANBoard chairman

Add Shareholders (Bulk)

Shareholders can be added in bulk using an array.
Endpoint: POST /api/v2.1/customer/organization/{organizationId}/shareholdersRequest Body (Array):
[
  {
    "tenantId": "97e7ff29-15f3-49ef-9681-3bbfcce4f6cd",
    "organizationId": "org-880e8400-e29b-41d4-a716-446655440110",
    "name": "Investment Fund Alpha Ltd",
    "shareholderType": "CORPORATE",
    "ownershipPercentage": 55.0,
    "numberOfShares": 5500,
    "shareClass": "ORDINARY",
    "votingRights": true,
    "registrationNumber": "REG-FUND-001",
    "taxId": "TAX-FUND-001",
    "country": "GB",
    "address": {
      "street": "100 Investment Street",
      "city": "London",
      "postalCode": "EC4A 1BB",
      "country": "GB"
    },
    "contactPerson": {
      "name": "Fund Manager",
      "email": "[email protected]",
      "phone": "+442071234580"
    }
  },
  {
    "tenantId": "97e7ff29-15f3-49ef-9681-3bbfcce4f6cd",
    "organizationId": "org-880e8400-e29b-41d4-a716-446655440110",
    "name": "John Investor",
    "shareholderType": "INDIVIDUAL",
    "ownershipPercentage": 45.0,
    "numberOfShares": 4500,
    "shareClass": "ORDINARY",
    "votingRights": true,
    "dateOfBirth": "1965-04-12",
    "nationality": "GB",
    "identificationDocument": {
      "type": "PASSPORT",
      "number": "GB123789456",
      "issuingCountry": "GB"
    },
    "address": {
      "street": "200 Investor Road",
      "city": "London",
      "postalCode": "EC5A 1BB",
      "country": "GB"
    }
  }
]

Shareholder Types

TypeDescription
INDIVIDUALPersonal shareholder
CORPORATECompany shareholder

Share Classes

ClassDescription
ORDINARYStandard voting shares
PREFERENCEPreference shares with dividends
REDEEMABLERedeemable shares

Add Employee

Endpoint: POST /api/v2.1/customer/organization/{organizationId}/employeeRequest Body:
{
  "tenantId": "97e7ff29-15f3-49ef-9681-3bbfcce4f6cd",
  "organizationId": "org-880e8400-e29b-41d4-a716-446655440110",
  "email": "[email protected]",
  "firstName": "Sarah",
  "middleName": "Jane",
  "lastName": "Johnson",
  "dateOfBirth": "1985-06-10",
  "nationality": "GB",
  "phoneNumber": "+442071234571",
  "department": "Compliance",
  "position": "Chief Compliance Officer",
  "employeeNumber": "EMP001",
  "startDate": "2015-03-01",
  "roles": ["EMPLOYEE", "COMPLIANCE_OFFICER", "ADMIN_USER"],
  "permissions": [
    "VIEW_TRANSACTIONS",
    "INITIATE_VERIFICATION",
    "APPROVE_SMALL_TRANSACTIONS"
  ],
  "address": {
    "street": "789 Employee Street",
    "city": "London",
    "postalCode": "EC2A 1BB",
    "country": "GB"
  }
}

Employee Roles

RoleDescription
EMPLOYEEBase role for all employees
ADMIN_USERAdministrative access (required for first employee)
COMPLIANCE_OFFICERCompliance and verification access
TRANSACTION_APPROVERApprove transactions
OPERATIONS_MANAGEROperations management

Auto-Role Assignment

Roles can be auto-assigned based on department:
DepartmentAuto-Assigned Roles
ComplianceCOMPLIANCE_OFFICER
FinanceTRANSACTION_APPROVER
ManagementADMIN_USER
OperationsOPERATIONS_MANAGER

Get Organization Definitions

Endpoint: GET /api/v2.1/customer/organization/definitions

Next Step

After adding personnel, proceed to Phase 3: Verification for KYB verification.

Phase 3: Verification

Initiate KYB verification process