APIOrgsAdd a member to your org

Parameters

Name

Type

Req.

  • bodyapplication/json

    object
    optional
    Object Properties
    • email

      string / Email Address
      optional
    • role

      string
      optional
      Possible values
      • admin:  Admins can do anything in the org.
      • member:  Members of an org can not modify an org, but they belong in the org.

Returns

  • 201 Created

    successful creation

    Name

    Type

    Req.

    body

    object
    optional
    Object Properties
    • company

      string
      optional
    • created_at

      string / ISO-8601
      optional
    • discord

      string
      optional
    • email

      string / Email Address
      optional
    • email_verified

      string / ISO-8601
      optional
    • first_name

      string
      optional
    • github

      string
      optional
    • id

      string / UUID
      optional
    • image

      string / URL
      optional
    • last_name

      string
      optional
    • name

      string
      optional
    • phone

      string / Phone Number
      optional
    • role

      string
      optional
      Possible values
      • admin:  Admins can do anything in the org.
      • member:  Members of an org can not modify an org, but they belong in the org.
      • service_account:  A service account role.
    • updated_at

      string / ISO-8601
      optional
post
/org/members
$ curl -X POST "https://api.zoo.dev/org/members" \
	--header "Authorization: Bearer $TOKEN" \
	--header "Content-Type: application/json" \
	--data '{
  "email": "a5j@SCC.com",
  "role": "member"
}'
201 Created
Response
{
  "company": "PoBqdFkBTJbSx",
  "created_at": "2025-08-14T21:14:29.319Z",
  "discord": "5NjC37FrYBUNbMBvxy79x3ZEVXE",
  "email": "@SMD.com",
  "email_verified": "2025-08-14T21:14:29.319Z",
  "first_name": "QVeOicBYV9PD9gHF9tcM",
  "github": "Ljh3uQhPlKdeLyIvutpWLcOrok",
  "id": "e08fdc14-f191-4227-a5d5-9b8d2c2ae92e",
  "image": "https://76uB9xIyjdF.3pUJ.com/ER/nphNv",
  "last_name": "Bb029QHF",
  "name": "iWqBgIXFAFXV",
  "phone": "+1-646-678-8375",
  "role": "member",
  "updated_at": "2025-08-14T21:14:29.319Z"
}