POST
/
indexuser
curl --request POST \
  --url https://{domain}-be.glean.com/api/index/v1/indexuser \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "version": 123,
  "datasource": "<string>",
  "user": {
    "email": "<string>",
    "userId": "<string>",
    "name": "<string>",
    "isActive": true
  }
}'

Authorizations

Authorization
string
header
required

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

Body

application/json

Describes the request body of the /indexuser API call

datasource
string
required

The datasource for which the user is added

user
object
required

The user to be added or updated

version
integer

Version number for document for optimistic concurrency control. If absent or 0 then no version checks are done.

Response

200
_mintlify/placeholder

OK