Get a Personal Access Token
Paid plans only
Personal access tokens are available on TelemetryDeck's paid plans. If your organization is on the free plan, upgrade your plan first and the feature will become available in the dashboard.
Generating a Personal Access Token¶
You generate personal access tokens directly from the TelemetryDeck dashboard. No API call is required.
- Sign in to your TelemetryDeck dashboard.
- Click your name in the top right of the header to open the user menu.
- Choose Personal Access Tokens.
- Click Generate new token.
- Give the token a memorable name (for example, "Claude assistant" or "CI export script") and pick an expiration window. Tokens cannot live longer than one year.
- Click Generate token.
You'll see the new token displayed once. Copy it immediately and store it somewhere safe — TelemetryDeck will never show the raw token to you again. Each token starts with the prefix tdpat_, so you can recognise it as a TelemetryDeck personal access token.
If you lose a token, you cannot recover it; revoke the lost token from the same screen and generate a new one.
Revoking a Token¶
To revoke a token, return to Personal Access Tokens in the user menu and click Revoke on the token you want to invalidate. Anything using the revoked token will stop working immediately.
Example: Retrieving your user information¶
Send the token in the Authorization header of any API request, prefixed with Bearer:
The response for this should look like this:
{
"email": "you@example.com",
"emailIsVerified": true,
"firstName": "Daniel",
"id": "BADA55-BADGE5",
"isFoundingUser": true,
"lastName": "Jilg",
"organization": {
"createdAt": "2020-12-31T23:00:00+0000",
"name": "TelemetryDeck",
"updatedAt": "2022-07-11T01:27:20+0000"
},
"receiveReports": "weekly"
}
A personal access token has the same permissions as your user account. If you belong to multiple organizations, the token can access data from all of them, the same way you can in the dashboard.