Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This API enables an organization admin to create a service user and generate its user token and email address.

QUERY PARAMETERS

Parameter

Description

Type

Required

requestType

API request type that creates a service user.

string

Yes

userKey

The ID of the user’s profile, which uniquely identifies the user in WhiteSource.

string

Yes

orgToken

API key which is a unique identifier of the organization.

string

Yes

addedUser

New service user data object containing:

name

Name of service user you want to create.

string

Yes

...

Code Block
{
    "userToken": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
    "userEmail": "service_user_email_address"
}

Back to top

Regenerate User Token for a Service User

...