Add a System Admin
To add a user as a System Admin through the Houston API, you need the following values:- The user’s ID. To retrieve this, request the
idvalue in ausersquery or runastro workspace user list. - System Admin permissions.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Promote a user to System Admin on Astro Private Cloud using the Houston API.
id value in a users query or run astro workspace user list.mutation createSystemRoleBinding (
$userId: ID! = "<user-id>"
$role: Role! = SYSTEM_ADMIN
) {
createSystemRoleBinding(
userId: $userId
role: $role
) {
id
}
}
Was this page helpful?