{ "opencollection": "1.0.0", "info": { "name": "Split Admin Groups API", "version": "2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Groups", "type": "folder" }, "items": [ { "info": { "name": "List groups", "type": "http" }, "http": { "method": "GET", "url": "https://api.split.io/internal/api/v2/groups" }, "docs": "Retrieves all active groups in the account. Groups are used to organize users and assign permissions collectively." }, { "info": { "name": "Create group", "type": "http" }, "http": { "method": "POST", "url": "https://api.split.io/internal/api/v2/groups", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new group with a name and description. Group names are unique within an account." }, { "info": { "name": "Get group", "type": "http" }, "http": { "method": "GET", "url": "https://api.split.io/internal/api/v2/groups/:groupId", "params": [ { "name": "groupId", "value": "", "type": "path", "description": "The unique identifier of the group" } ] }, "docs": "Retrieves a single group by its unique identifier." }, { "info": { "name": "Delete group", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.split.io/internal/api/v2/groups/:groupId", "params": [ { "name": "groupId", "value": "", "type": "path", "description": "The unique identifier of the group" } ] }, "docs": "Deletes a group from the account." } ] } ], "bundled": true }