POST
/
indexdocuments
curl --request POST \
  --url https://{domain}-be.glean.com/api/index/v1/indexdocuments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "uploadId": "<string>",
  "datasource": "<string>",
  "documents": [
    {
      "title": "<string>",
      "filename": "<string>",
      "container": "<string>",
      "containerDatasourceId": "<string>",
      "containerObjectType": "<string>",
      "datasource": "<string>",
      "objectType": "<string>",
      "viewURL": "<string>",
      "id": "<string>",
      "summary": {
        "mimeType": "<string>",
        "textContent": "<string>",
        "binaryContent": "<string>"
      },
      "body": {
        "mimeType": "<string>",
        "textContent": "<string>",
        "binaryContent": "<string>"
      },
      "author": {
        "email": "<string>",
        "datasourceUserId": "<string>",
        "name": "<string>"
      },
      "owner": {
        "email": "<string>",
        "datasourceUserId": "<string>",
        "name": "<string>"
      },
      "permissions": {
        "allowedUsers": [
          {
            "email": "<string>",
            "datasourceUserId": "<string>",
            "name": "<string>"
          }
        ],
        "allowedGroups": [
          "<string>"
        ],
        "allowedGroupIntersections": [
          {
            "requiredGroups": [
              "<string>"
            ]
          }
        ],
        "allowAnonymousAccess": true,
        "allowAllDatasourceUsersAccess": true
      },
      "createdAt": 123,
      "updatedAt": 123,
      "updatedBy": {
        "email": "<string>",
        "datasourceUserId": "<string>",
        "name": "<string>"
      },
      "tags": [
        "<string>"
      ],
      "interactions": {
        "numViews": 123,
        "numLikes": 123,
        "numComments": 123
      },
      "status": "<string>",
      "additionalUrls": [
        "<string>"
      ],
      "comments": [
        {
          "id": "<string>",
          "author": {
            "email": "<string>",
            "datasourceUserId": "<string>",
            "name": "<string>"
          },
          "content": {
            "mimeType": "<string>",
            "textContent": "<string>",
            "binaryContent": "<string>"
          },
          "createdAt": 123,
          "updatedAt": 123,
          "updatedBy": {
            "email": "<string>",
            "datasourceUserId": "<string>",
            "name": "<string>"
          }
        }
      ],
      "customProperties": [
        {
          "name": "<string>",
          "value": "<any>"
        }
      ]
    }
  ]
}'

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 /indexdocuments API call

datasource
string
required

Datasource of the documents

documents
object[]
required

Batch of documents being added/updated

Indexable document structure

uploadId
string

Optional id parameter to identify and track a batch of documents.

Response

200
_mintlify/placeholder

OK