Manage users, groups, and applications via Okta API. Handle identity and access management.
Enterprise identity management.
```bash
export OKTA_DOMAIN="your-org.okta.com"
export OKTA_API_TOKEN="xxxxxxxxxx"
```
```bash
curl "https://$OKTA_DOMAIN/api/v1/users" \
-H "Authorization: SSWS $OKTA_API_TOKEN"
```
```bash
curl -X POST "https://$OKTA_DOMAIN/api/v1/users?activate=true" \
-H "Authorization: SSWS $OKTA_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"profile": {"firstName": "John", "lastName": "Doe", "email": "[email protected]", "login": "[email protected]"}}'
```
```bash
curl "https://$OKTA_DOMAIN/api/v1/groups" -H "Authorization: SSWS $OKTA_API_TOKEN"
```
```bash
curl "https://$OKTA_DOMAIN/api/v1/apps" -H "Authorization: SSWS $OKTA_API_TOKEN"
```
Leave a review
No reviews yet. Be the first to review this skill!