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": "zdG3LvsD@.com",
  "role": "member"
}'
201 Created
Response
{
  "company": "G9k",
  "created_at": "2025-07-15T17:15:14.494Z",
  "discord": "BEldkN5d8DiUc",
  "email": "2srm4@7UB3jinsdG.com",
  "email_verified": "2025-07-15T17:15:14.494Z",
  "first_name": "LdSeOV6X8IKm",
  "github": "FDxQXXRLyOxNABzqOYpMh",
  "id": "4c961a2d-595d-4ff3-add8-6473e5672eba",
  "image": "https://YiWbZJOGp1PW.ALMGY2X0B.com/tqgct/DuYdFrXKG",
  "last_name": "bxB86X",
  "name": "Qs1NkoFUx",
  "phone": "+1-298-233-8501",
  "role": "service_account",
  "updated_at": "2025-07-15T17:15:14.494Z"
}