Skip to main content

Manage API Access Tokens

Note

This feature may not be available in all product editions. For more information on available features, see Compare Editions.

This section provides some task information for how to use API access tokens as part of your API projects in Dataprep by Trifacta. An access token is a hashed string that enables authentication when submitted to any endpoint. Access tokens limit exposure of clear-text authentication values and provide an easy method of managing authentication outside of the browser.

Notes:

  • An access token is linked to its creator and can be generated by submitting a username/password combination or another valid token from the same user.

    • If a token is created for userA, userB can be provided the token to impersonate userA.

    • You cannot create access tokens for users without their authentication credentials.

    • Changes to passwords do not affect tokens.

  • After a token has been created, it cannot be modified or extended.

    • You can create an unlimited number of tokens.

  • Access tokens can be used for authentication with any supported version of the APIs.

Enable

Access to the APIs must be enabled by the project owner for the project.

Enable individual access

When access tokens are enabled, by default only administrators are permitted to generate tokens. Optionally, project administrators can enable individual users in the workspace to generate and use their own API access tokens. For more information, see Dataprep Project Settings Page.

Generate New Token

API access tokens must be created.

Note

OTE: Access tokens are issued per project. Your product edition and available endpoints may vary between projects.

Via UI

Tokens can be generated from the web application.

Steps:

  1. Login to the Trifacta Application.

  2. From the left nav bar, select User menu > Preferences > Access Tokens.

  3. Click Generate New Token.

  4. Specify the number of days for how long the token should live.

    Tip

    Depending on how your environment is configured, you may be able to enter -1 to create a non-expiring token.

  5. Add a user-friendly description if desired.

  6. Click Generate.

Note

Copy the value of the token to the clipboard and store it in a secure location for use with your scripts. For security reasons, the token value itself cannot be retrieved from the application after it has been created.

For more information, see Access Tokens Page.

Use Token

After a token has been acquired, it must be included in each request to the server, for as long as it is valid.

Note

After a token has been created, it cannot be extended or modified.

Note

API access tokens are not used by users through the Trifacta Application.

After you have acquired the token, you submit it with each API request to the platform.

Example - cURL:

The following example returns a JSON version of the list of available REST API endpoints for your environment:

curl https://www.api.clouddataprep.com/v4/open-api-spec -X GET -H "Authorization: Bearer (tokenValue)"
  • (tokenValue) is the value returned for the token when it was created.

Example - REST client:

If you are submitting your API calls through a REST client, the Authorization header must be specified as follows:

Authorization: Bearer (tokenValue)

Renew Token

New tokens can be acquired at any time.

Note

It is the responsibility of the user to acquire a new API token before the current one expires. If a token is permitted to expire, a request for a new token must include userId and password information.

Delete Token

  • Via UI: In the Access Tokens page, select Delete Token... from the context menu for the token listing. See Access Tokens Page.