POST /_system/authentication-groups
Create a new authentication group
Create a new authentication group
Key | Type | Example | |
---|---|---|---|
authorization required | string |
"Bearer your-jwt-token"
|
Key | Type | Example | Description |
---|---|---|---|
name optional | string |
"example-string"
|
Group name
|
description optional | string |
"example-string"
|
Group description
|
permissions optional | array |
[]
|
Array of permission strings
|
is_active optional | boolean |
true
|
Whether the group is active
|
{
"_meta": {
"guid": "example-string",
"entity": "example-value",
"created": "example-value",
"modified": "example-value",
"updated": "example-value"
},
"name": "Administrators",
"description": "Full system access group",
"permissions": [
"view_audit_logs",
"manage_users",
"setting_edit_blueprints"
],
"is_active": true
}
{
"success": false,
"error": "HTTP_401",
"message": "Error response"
}
Error Code | Description |
---|---|
HTTP_400 | Validation error |
HTTP_401 | HTTP 401 error |
permission | description |
---|---|
BearerAuth |
JWT access token obtained from login endpoint required |
Back to Authentication Groups Return to the Authentication Groups category to view other endpoints All API Categories Browse all available API categories