TokenScopes

The `TokenScopes` entity.

Definition

TypeScript
interface TokenScopes {
  operations?: Array<string> | undefined;
  entityIds?: Array<string> | undefined;
}

Fields

FieldTypeNotes
operationsArray<string> | undefinedoptional — Allowed operation identifiers (e.g. 'agents.create'); omit to allow all.
entityIdsArray<string> | undefinedoptional — Whitelist of entity IDs this token may act on; omit to allow all.