POST
/
rest
/
api
/
v1
/
deleteshortcut
from glean.api_client import Glean
import os


with Glean(
    api_token=os.getenv("GLEAN_API_TOKEN", ""),
    instance=os.getenv("GLEAN_INSTANCE", ""),
) as glean:

    glean.client.shortcuts.delete(id=975862)

    # 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

DeleteShortcut request

The body is of type object.

Response

200

OK