> ## Documentation Index
> Fetch the complete documentation index at: https://getequity.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Member

> Create a member of an Organisanisation's syndicate

<RequestExample>
  ```json theme={null}
  {
      "email": "willmember@yopmail.com",
      "password": "William01",
      "fname": "willmember",
      "lname": "Ajasco",
      "username": "willmember",
      "phone": "08026662262"
  }
  ```
</RequestExample>

<ParamField body="email" type="string" required>
  Member's email
</ParamField>

<ParamField path="password" type="string" required>
  Member's password
</ParamField>

<ParamField path="fname" type="string" required>
  Member's first name
</ParamField>

<ParamField path="lname" type="string" required>
  Member's last name
</ParamField>

<ParamField path="username" type="string" required>
  Member's username
</ParamField>

<ParamField path="phone" type="string" required>
  Member's phone number
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
      "status": "success",
      "message": "organisation member created successfully",
      "data": {
          "type": "User",
          "entity_type": "user",
          "kyc": {
              "bank": false,
              "identityDocument": "Approved",
              "selfie": "Approved",
              "address": "Approved",
              "accredited": "Sophisticated Investor",
              "email": true,
              "terms": true
          },
          "activated": true,
          "verified": true,
          "pin_set": false,
          "biometrics_auth": false,
          "self_activated": true,
          "two_factor_enabled": false,
          "flw_baas_reference": "",
          "brass_reference": "",
          "squad_reference": "",
          "manual_reference": "",
          "tour": {
              "introduction_tour": false,
              "wallet_tour": false,
              "secondary_tour": false
          },
          "_id": "67141fc06328250002a4c389",
          "fname": "willmember",
          "lname": "Ajasco",
          "email": "willmember@yopmail.com",
          "username": "willmember",
          "phone": "08026662262",
          "city": null,
          "state": null,
          "country": null,
          "homeAddress": null,
          "createdAt": "2024-10-19T21:08:16.477Z",
          "updatedAt": "2024-10-19T21:08:16.551Z",
          "dealroom_member": true,
          "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6IndpbGxtZW1iZXJAeW9wbWFpbC5jb20iLCJ0eXBlIjoiVXNlciIsImlhdCI6MTcyOTM3MjA5NiwiZXhwIjoxNzI5NDU4NDk2fQ.Vczi6BN4uEDV4tU_ELuPCsDq4NrabJPocZFFKmUTrC4"
      }
  }
  ```
</ResponseExample>
