POST
/
bulkindexgroups
curl --request POST \
  --url https://{domain}-be.glean.com/api/index/v1/bulkindexgroups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "uploadId": "<string>",
  "isFirstPage": true,
  "isLastPage": true,
  "forceRestartUpload": true,
  "datasource": "<string>",
  "groups": [
    {
      "name": "<string>"
    }
  ],
  "disableStaleDataDeletionCheck": 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 for the /bulkindexgroups API call

uploadId
string
required

Unique id that must be used for this instance of datasource groups upload

datasource
string
required

datasource of the groups

groups
object[]
required

batch of groups for the datasource

describes a group in the datasource

isFirstPage
boolean

true if this is the first page of the upload. Defaults to false

isLastPage
boolean

true if this is the last page of the upload. Defaults to false

forceRestartUpload
boolean

Flag to discard previous upload attempts and start from scratch. Must be specified with isFirstPage=true

disableStaleDataDeletionCheck
boolean

True if older group data needs to be force deleted after the upload completes. Defaults to older data being deleted only if the percentage of data being deleted is less than a reasonable threshold. This must only be set when isLastPage = true

Response

200
_mintlify/placeholder

OK