Hey guys am wondering how i can access the ingest tokens management/interface. I can access the auth tokens endpoint just fine but nothing documented for direct write ingest-tokens there as far as i can see.
TIA
Hey guys am wondering how i can access the ingest tokens management/interface. I can access the auth tokens endpoint just fine but nothing documented for direct write ingest-tokens there as far as i can see.
TIA
Hey @andy this should be behind a feature flag.
I’ve gone ahead and enabled that for you.
Feel free to verify you’re able to see something similar to the following:
Looks like i can enable in our other tenants also with:
mutation {
updateFeatureFlagForUser(
input: {
name: "IngestTokenListerPage"
isEnabled: true
}
) {
name
isEnabled
description
isSelfServiceEnabled
}
}
Many thanks nikhil!