POST
/
indexdocument
curl --request POST \
  --url https://{domain}-be.glean.com/api/index/v1/indexdocument \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "version": 123,
  "document": {
    "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 /indexdocument API call

document
object
required

Document being added/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