Skip to content

Commit b69e963

Browse files
committed
domain sync
1 parent 991e58b commit b69e963

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/FusionAuthClient.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3198,15 +3198,15 @@ export class FusionAuthClient {
31983198
}
31993199

32003200
/**
3201-
* Retrieves a single refresh token by unique Id. This is not the same thing as the string value of the refresh token, if you have that, you already have what you need..
3201+
* Retrieves a single refresh token by unique Id. This is not the same thing as the string value of the refresh token. If you have that, you already have what you need.
32023202
*
3203-
* @param {UUID} userId The Id of the user.
3203+
* @param {UUID} tokenId The Id of the token.
32043204
* @returns {Promise<ClientResponse<RefreshTokenResponse>>}
32053205
*/
3206-
retrieveRefreshTokenById(userId: UUID): Promise<ClientResponse<RefreshTokenResponse>> {
3206+
retrieveRefreshTokenById(tokenId: UUID): Promise<ClientResponse<RefreshTokenResponse>> {
32073207
return this.start<RefreshTokenResponse, Errors>()
32083208
.withUri('/api/jwt/refresh')
3209-
.withUriSegment(userId)
3209+
.withUriSegment(tokenId)
32103210
.withMethod("GET")
32113211
.go();
32123212
}

0 commit comments

Comments
 (0)