Harness GraphQL API for Onboarding Automation

Turning Harness GraphQL APIs into Shell Scripts for Onboarding Automation

Lately, I’ve been working with teams that have been trying to automate their onboarding process on to Harness. This usually occurs when the initial team has configured everything in the UI and understands the relationship between the various Harness Objects.

In order to scale and have more teams use Harness, customers want to leverage the Harness APIs to create Applications, Secrets, Link LDAP or SAML groups, add users, add user groups, etc. I share this sample script all our customers to get them started:

Step 1
The user will need an API Key with the correct permissions. To create an API Key please review our docs: API Keys - Harness.io Docs

Step 2
To get familiar with the GraphQL API, please review the following documentation, we provide some sample queries to try on your own Harness Account! Start compiling a list of queries you wish to convert into a script or an HTTP call.

Application Queries:

User Group Queries:

Audit Trail Queries:

Note: When building the automation we do impose Rate Limiting:

The Harness API imposes a (sliding-window) rate limit of 30 requests per minute, per account. Each request is limited to a maximum query depth of 10 properties. Harness reserves the right to change these limits, in order to optimize performance for all API consumers.

Step 3

To build out these scripts, we make the GraphQL API call and do a chrome inspect of the call. We copy the call as Curl and paste it into an editor and start gutting and templating it out for automation.

In the Harness Documentation, we also show how to achieve this with Postman: ​Introduction to Harness GraphQL API - Harness.io Docs

To use these scripts, you will need to provide the Harness API Key and the Harness ACCOUNT ID.

I have sample inputs in the example, please feel free to change them and try them out!

Sample Scripts to Try

#!/bin/bash

# Create Application

APP_NAME="SampleApp"

APP_DESCRIPTION="Created by Automation Script"

fn_create_app(){

echo "Creating an Application"

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation createapp($app: CreateApplicationInput\u0021) {\\n createApplication(input: $app) {\\n clientMutationId\\n application {\\n name\\n id\\n }\\n }\\n}","variables":{"app":{"clientMutationId":"req9","name":"'$APP_NAME'","description":"'$APP_DESCRIPTION'"}},"operationName":"createapp"}' --compressed

}

# Delete Application

APP_ID="uP22_SFwTHe_-qYwzkm9mA"

fn_delete_app(){

echo "Deleting Application"

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation deleteapp($app: DeleteApplicationInput\u0021) {\\n deleteApplication(input: $app){\\n clientMutationId\\n }\\n}","variables":{"app":{"applicationId":"'$APP_ID'"}},"operationName":"deleteapp"}' --compressed

}

# Create User Group

USERGROUPNAME="SampleGroup"

fn_create_user_group(){

echo "****Creating a User Group****"

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation($userGroup: CreateUserGroupInput\u0021){\\n createUserGroup (input:$userGroup) {\\n userGroup {\\n id\\n name\\n description\\n isSSOLinked\\n importedByScim\\n notificationSettings {\\n sendNotificationToMembers\\n sendMailToNewMembers\\n slackNotificationSetting {\\n slackChannelName\\n slackWebhookURL\\n }\\n groupEmailAddresses\\n }\\n }\\n }\\n}","variables":{"userGroup":{"name":"'$USERGROUPNAME'"}}}' --compressed

}

# Delete User Group

USERGROUPID="fqn3QnvYSAOjhAMkc7YxIw"

fn_delete_user_group(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation($userGroup: DeleteUserGroupInput\u0021){\\n deleteUserGroup (input:$userGroup) {\\n\\t\\tclientMutationId\\n }\\n}","variables":{"userGroup":{"userGroupId":"'$USERGROUPID'"}}}' --compressed

}

# Create a User

USEREMAIL="sample@harness.io"

USERNAME="captainCanary"

fn_create_user(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation($user: CreateUserInput\u0021){\\n createUser (input:$user) {\\n\\t\\tclientMutationId\\n }\\n}","variables":{"user":{"email":"'$USEREMAIL'","name":"'$USERNAME'"}}}' --compressed

}

# Delete User

fn_delete_user(){

USERID="fsyzR55DSPuz7UG1lki3eQ"

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation($deleteUser: DeleteUserInput\u0021){\\n deleteUser(input: $deleteUser){\\n clientMutationId\\n }\\n}","variables":{"deleteUser":{"id":"'$USERID'"}}}' --compressed

}

# Update UserGroup

USERID="fsyzR55DSPuz7UG1lki3eQ"

USERGROUPID="-c7ZpUokQBCKBXnmiaTY0g"

fn_update_user_group(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'content-type: application/json' \

-H 'x-api-key: '$HARNESS_KEY'' \

--data-binary $'{"query":"mutation($user: UpdateUserGroupInput\u0021){\\n updateUserGroup(input: $user){\\n clientMutationId\\n userGroup{\\n name\\n id\\n }\\n }\\n}","variables":{"user":{"userIds":"'$USERID'","userGroupId":"'$USERGROUPID'"}}}' --compressed

}

# Add permissions to the group

USERGROUPID="fqn3QnvYSAOjhAMkc7YxIw"

APP_ID="uP22_SFwTHe_-qYwzkm9mA"

fn_add_permissions(){

echo "*****adding permissions to the group****"

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation($userGroup: UpdateUserGroupPermissionsInput\u0021){\\n updateUserGroupPermissions (input:$userGroup) {\\n permissions {\\n accountPermissions{\\n accountPermissionTypes\\n }\\n appPermissions {\\n permissionType\\n applications {\\n filterType\\n appIds\\n }\\n applications{\\n filterType\\n appIds\\n }\\n }\\n }\\n }\\n}\\n\\n","variables":{"userGroup":{"userGroupId":"'$USERGROUPID'","permissions":{"accountPermissions":{"accountPermissionTypes":["READ_USERS_AND_GROUPS","MANAGE_TEMPLATE_LIBRARY","VIEW_AUDITS"]},"appPermissions":[{"permissionType":"ALL","applications":{"appIds":["'$APPID'"]},"actions":["CREATE","READ","UPDATE"]}]}}}}' --compressed

}

# Fetch User By Name

# Returns Name and ID

USERNAME="captainCanary"

fn_fetch_user_by_name(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary '{"query":"{\n userByName(name:\"'$USERNAME'\"){\n id\n name\n email\n }\n}","variables":null}' --compressed

}

# Fetch UserGroup By Name

# Returns name, ID

USERGROUPNAME="Notification"

fn_fetch_user_group_by_name(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary '{"query":"{\n userGroupByName(name:\"Notification\"){\n id\n name\n }\n}","variables":null}' --compressed

}

# Create Secret - Encrypted Text

SECRETNAME="Sampler"

SECRETVALUE="ThisISTheVAlue"

fn_create_secret(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation($secret: CreateSecretInput\u0021){\\n createSecret(input: $secret){\\n clientMutationId\\n secret{\\n name\\n id\\n secretType\\n }\\n }\\n}","variables":{"secret":{"secretType":"ENCRYPTED_TEXT","encryptedText":{"value":"'$SECRETVALUE'","name":"'$SECRETNAME'"},"clientMutationId":""}}}' --compressed

}

# Delete Secret - Encrypted Text

SECRETID="LPusNePLTnSxD9N7QZou-Q"

func_delete_secret(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary $'{"query":"mutation($secret: DeleteSecretInput\u0021){\\n deleteSecret(input:$secret){\\n clientMutationId\\n }\\n}","variables":{"secret":{"secretId":"'$SECRETID'","secretType":"ENCRYPTED_TEXT"}}}' --compressed

}

# Fetch Application By Name

APP_NAME="Rohan"

func_get_app_by_name(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary '{"query":"{\n applicationByName(name:\"Rohan\"){\n name\n id \n }\n}","variables":null}' --compressed

}

# Fetch Secret By Name

SECRETNAME="Sampler"

func_secret_by_name(){

curl '[https://app.harness.io/gateway/api/graphql?accountId='](https://app.harness.io/gateway/api/graphql?accountId=%27)$HARNESS_ACCOUNT_ID'' \

-H 'x-api-key: '$HARNESS_KEY'' \

-H 'content-type: application/json' \

--data-binary '{"query":"query{\n secretByName(name:\"'$SECRETNAME'\", secretType:ENCRYPTED_TEXT){\n ... on EncryptedText{\n id\n name \n }\n }\n}\n","variables":null}' --compressed

}

Post

My Colleague @sneakyaneurysm has also written some neet blog posts on adding users at scale using the API: Write API: Create User - Mass Upload

Check it out!

Till next time my fellow canaries.

1 Like