auth.getCanvaUserToken

API reference for the auth.getCanvaUserToken method.

Gets a JSON Web Token (JWT) for the current user.

To learn more, see Verifying JWTs.

import { auth } from "@canva/user";
const token = await auth.getCanvaUserToken();
console.log(token);
ts

A Promise that resolves with the following string:

#resultstring
Required

The JSON Web Token for the current user.

When decoded and verified, an object is returned with the following properties:

  • aud - The ID of the app.
  • brandId - The ID of the user's team.
  • userId - The ID of the user.