POST
/
v1
/
internal
/
users
/
search
curl --request POST \
  --url https://api.pulze.ai/v1/internal/users/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "q": "<string>"
}'
[
  {
    "id": "<string>",
    "type": "<string>",
    "name": "<string>",
    "email": "<string>",
    "email_verified": true,
    "invite_status": "<string>",
    "hubspot_id": "<string>",
    "blocked": true,
    "is_myself": true
  }
]

Authorizations

Authorization
string
header
required

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

Body

application/json
q
string
required

Response

200
application/json
Successful Response
id
string
required

Auth0 ID

type
string
required
name
string
required
email
string
required
email_verified
boolean
required
invite_status
string
required
hubspot_id
string | null
required
blocked
boolean | null
required
is_myself
boolean
required

True if it's you