Retrieves a user challenge by token.
Represents the input parameters for fetching a challenge.
The unique identifier for the challenge.
The JSON Web Token (JWT) representing the user.
1const response = await client.getUserChallenge({
2 userToken: 'dummy-user-token',
3 challengeId: 'challenge-id',
4})
5console.log(response.data?.challenge)