Reputation: 3353
Following these abbreviated steps to generate an Okta token:
works wonderfully, however I'd like to limit the authority of such a token to only affect certain applications or perform only certain operations - is this possible?
Upvotes: 2
Views: 90
Reputation: 736
API Tokens share the same rights as the admin that created them.
If you wanted to create an API Token that had read-only access, for instance, you could follow these steps:
That API Token could now only be used for read only operations. An attempt at a write operation with that API Token would fail.
HTH! (full disclosure: I work for Okta)
Upvotes: 2