Create a System Service Account Token with the Houston API

Create a System Service Account Token

System administrators can create a global system service account token to integrate with external systems, such as CI/CD pipelines. Use the following example mutation to create the service account token:

1mutation systemSACreate {
2 createSystemServiceAccount(
3 label: "your-sa"
4 role: SYSTEM_ADMIN
5 ) {
6 id
7 apiKey
8 }
9}

Save a copy of the the returned API key value in a secure place as it won’t be displayed again.