{ "opencollection": "1.0.0", "info": { "name": "Split Admin Users API", "version": "2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List users", "type": "http" }, "http": { "method": "GET", "url": "https://api.split.io/internal/api/v2/users", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return per page" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" }, { "name": "status", "value": "", "type": "query", "description": "Filter users by status" } ] }, "docs": "Retrieves all users that the Admin API key has access to within the account. Returns user details including status, email, and group memberships." }, { "info": { "name": "Get user", "type": "http" }, "http": { "method": "GET", "url": "https://api.split.io/internal/api/v2/users/:userId", "params": [ { "name": "userId", "value": "", "type": "path", "description": "The unique identifier of the user" } ] }, "docs": "Retrieves a single user by their unique identifier." }, { "info": { "name": "Update user", "type": "http" }, "http": { "method": "PUT", "url": "https://api.split.io/internal/api/v2/users/:userId", "params": [ { "name": "userId", "value": "", "type": "path", "description": "The unique identifier of the user" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a user's profile, including their role and group memberships." }, { "info": { "name": "Deactivate user", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.split.io/internal/api/v2/users/:userId", "params": [ { "name": "userId", "value": "", "type": "path", "description": "The unique identifier of the user" } ] }, "docs": "Deactivates a user within the account." }, { "info": { "name": "Invite user", "type": "http" }, "http": { "method": "POST", "url": "https://api.split.io/internal/api/v2/users/invite", "body": { "type": "json", "data": "{}" } }, "docs": "Invites a new user to the account by sending an invitation email." } ] } ], "bundled": true }