Agent Skill
2/7/2026

onelogin

Manage users and apps via OneLogin API. Handle SSO and identity management.

Y
ypyt1
0GitHub Stars
1Views
npx skills add YPYT1/All-skills

SKILL.md

Nameonelogin
DescriptionManage users and apps via OneLogin API. Handle SSO and identity management.

name: onelogin description: Manage users and apps via OneLogin API. Handle SSO and identity management. metadata: {"clawdbot":{"emoji":"1️⃣","requires":{"env":["ONELOGIN_CLIENT_ID","ONELOGIN_CLIENT_SECRET","ONELOGIN_REGION"]}}}

OneLogin

Identity and access management.

Environment

export ONELOGIN_CLIENT_ID="xxxxxxxxxx"
export ONELOGIN_CLIENT_SECRET="<GOOGLE_OAUTH_CLIENT_SECRET_REDACTED>"
export ONELOGIN_REGION="us"  # or eu

Get Access Token

curl -X POST "https://api.$ONELOGIN_REGION.onelogin.com/auth/oauth2/v2/token" \
  -u "$ONELOGIN_CLIENT_ID:$ONELOGIN_CLIENT_SECRET" \
  -d "grant_type=client_credentials"

List Users

curl "https://api.$ONELOGIN_REGION.onelogin.com/api/2/users" \
  -H "Authorization: Bearer $ACCESS_TOKEN"

Create User

curl -X POST "https://api.$ONELOGIN_REGION.onelogin.com/api/2/users" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com", "firstname": "John", "lastname": "Doe"}'

Links

Skills Info
Original Name:oneloginAuthor:ypyt1