from glean import Glean
import os


with Glean(
    api_token=os.getenv("GLEAN_API_TOKEN", ""),
) as g_client:

    g_client.indexing.permissions.bulk_index_users(upload_id="<id>", datasource="<value>", users=[
        {
            "email": "Nola85@hotmail.com",
            "name": "<value>",
        },
        {
            "email": "Francisca44@hotmail.com",
            "name": "<value>",
        },
        {
            "email": "Georgiana_Fadel-Boyle@yahoo.com",
            "name": "<value>",
        },
    ])

    # Use the SDK ...

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

Response

200

OK