Lists all attribute conflicts for your Team
This endpoint requires the following role: resource_admin
.
OK
{- "list": [
- {
- "attribute_name": "unix_user_name",
- "attribute_value": "Sec.Admin",
- "id": "11faefa1-6b59-4a5a-9492-43195cd07385",
- "is_service_user": false,
- "user_name": "OPA.User.1"
}, - {
- "attribute_name": "unix_user_name",
- "attribute_value": "Sec.Admin",
- "id": "11faefa1-6b59-4a5b-9492-43195cd07385",
- "is_service_user": false,
- "user_name": "OPA.User.2"
}, - {
- "attribute_name": "unix_gid",
- "attribute_value": 1001,
- "id": "b06dfc59-ae9c-4q43-b583-96d09988fd84",
- "user_name": "OPA.User.3"
}, - {
- "attribute_name": "unix_gid",
- "attribute_value": 1001,
- "id": "ff2c0f25-b73d-4t20-8aeb-b6c39a68a204",
- "is_service_user": true,
- "user_name": "OPA.User.4"
}
]
}
Lists all Attributes for a specified Group
This endpoint requires one of the following roles: resource_admin
, delegated_resource_admin
.
OK
{- "list": [
- {
- "id": "36844d7c-f311-4a42-866c-f32a5a41e213",
- "attribute_name": "unix_group_name",
- "attribute_value": "group_old",
- "managed": false
}, - {
- "id": "8eb50e3f-ef90-4215-b358-9318b35867de",
- "attribute_name": "windows_group_name",
- "attribute_value": "group_new",
- "managed": false
}
]
}
Retrieves an Attribute for a Group
This endpoint requires one of the following roles: resource_admin
, delegated_resource_admin
.
OK
{- "attribute_name": "unix_group_name",
- "attribute_value": "group_old",
- "id": "36844d7c-f311-4a42-866c-f32a5a41e213",
- "managed": false
}
Updates an Attribute for a Group
This endpoint requires the following role: resource_admin
.
No Content
{- "attribute_name": "unix_group_name",
- "attribute_value": "new_name"
}
Lists all Attributes for a specified user
This endpoint requires the following role: resource_admin
.
OK
{- "list": [
- {
- "id": "11faefa1-6b59-4a52-9492-43195cd07385",
- "attribute_name": "unix_user_name",
- "attribute_value": "augusta_ada_king",
- "managed": true
}, - {
- "id": "11faefa1-6b59-4a52-9492-43195cd07385",
- "attribute_name": "unix_uid",
- "attribute_value": 1210,
- "managed": true
}, - {
- "id": "b06dfc59-ae9c-4243-b583-96d09988fd84",
- "attribute_name": "unix_gid",
- "attribute_value": 1210,
- "managed": true
}, - {
- "id": "ff2c0f25-b73d-4720-8aeb-b6c39a68a204",
- "attribute_name": "windows_user_name",
- "attribute_value": "augusta_ada_king",
- "managed": true
}
]
}
Retrieves an Attribute for a User
This endpoint requires the following role: resource_admin
.
OK
{- "attribute_name": "unix_user_name",
- "attribute_value": "augusta_ada_king",
- "id": "11faefa1-6b59-4a52-9492-43195cd07385",
- "managed": true
}
Updates an Attribute for a User
This endpoint requires the following role: resource_admin
.
No Content
{- "attribute_name": "unix_user_name",
- "attribute_value": "ada_lovelace"
}