Step 1 — Create an API credential
Credential management RPCs require a session token, not an OAuth token. Open Manus in your browser, then in DevTools → Network copy theBearer ... value from the Authorization header on any UserInfo request.
clientId and clientSecret. The secret is shown only once — store it in a secrets manager immediately.
Step 2 — Mint an OAuth access token
access_token valid for 3600 seconds:
Step 3 — Call a users endpoint
- Add a member —
POST /api/user/manage/v1/users - Disable a member —
PATCH /api/user/manage/v1/users/{email}with{"status":"inactive"} - Look up a single member —
GET /api/user/manage/v1/users/{email}
Considering v2?
v2 of this API replaces session-token credential management with the standardX-API-Key flow (issued from Compliance API settings, no DevTools step) and adds the Profile Migration workflow for taking over a deactivated colleague’s data. Prefer v2 for new integrations.