POST
/
v1
/
orgs
/
members
curl --request POST \
  --url https://api.pulze.ai/v1/orgs/members \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "email": "<string>",
    "token": "<string>",
    "invite_status": "accepted",
    "is_current_user": true,
    "added_on": "2023-11-07T05:31:56Z",
    "last_login": "2023-11-07T05:31:56Z",
    "permissions": "<string>",
    "auth0_id": "<string>",
    "picture": "<string>",
    "is_active": true
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
Successful Response
id
string
required
name
string
required
email
string
required
token
string | null
required
invite_status
enum<string>
required
Available options:
accepted,
declined,
pending
is_current_user
boolean
required
added_on
string
required
last_login
string | null
required
permissions
string
required
auth0_id
string | null
required
picture
string | null
required
is_active
boolean | null
required

True/False for the user's state. Null for non-users (like invites)