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

Response

200
application/json

Successful Response

The response is of type InternalUserData · object[].

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

Response

200
application/json

Successful Response

The response is of type InternalUserData · object[].