Skip to main content

Use the setting API to enable SCIM API authentication through JWT

You can use JWT to access Harness SCIM APIs. To do this, you must first configure the settings corresponding to JWT using the Setting API

Prerequisites

Create a service account in Harness

You must have a service account in Harness to authorize access to the API. You can either create a new service account or use an existing service account in Harness.

To create a new service account, perform the following steps:

  1. In app.harness.io, click Account Settings.
  2. Select Access Control.
  3. Select Service Accounts and then select New Service Account.
  4. Enter your name and email address for this account.
  5. Select Save. For more information, see Create a service account.
  6. Your service account now appears in the Service Account list. Select Manage Roles next to the service account you just created to assign role bindings to the service account you just created.
  7. Assign the following permissions to the service account:

Configure settings to enable JWT authentication

Use the following curl command to update the settings corresponding to the JWT authentication:

    curl --location --request PUT 'https://app.harness.io/gateway/ng/api/settings?accountIdentifier={accountidentifier}' \
--header 'Connection: keep-alive' \
--header 'x-api-key: {pat}' \
--header 'Accept: */*' \
--header 'Accept-Language: en-US,en;q=0.9' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"identifier": "scim_jwt_token_jwks_keys_url",
"value": "{value}",
"allowOverrides": false,
"updateType": "UPDATE"
},
{
"identifier": "scim_jwt_token_key_field",
"value": "{value}",
"allowOverrides": false,
"updateType": "UPDATE"
},
{
"identifier": "scim_jwt_token_value_field",
"value": "{value}t",
"allowOverrides": false,
"updateType": "UPDATE"
},
{
"identifier": "scim_jwt_token_service_account_id",
"value": "{serviceaccountid}",
"allowOverrides": false,
"updateType": "UPDATE"
}
]'

Replace {serviceaccountid} with the ID for the service account you created in the previous section.