You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a new challenge to verify a login identifier
64
+
Creates a new challenge to verify a login identifier for a user by given `userID`. Challenges come in three flavors: **Email OTP**, **SMS OTP**, and **Email Magiclink**. **OTP** stands for One-Time Password. It is a unique code sent to the user via email or SMS, which they must enter to complete the verification process.
65
65
66
-
:param user_id: ID of user (required)
66
+
:param user_id: Unique identifier of the user. Format: `usr-<number>`. (required)
67
67
:type user_id: str
68
68
:param challenge_create_req: (required)
69
69
:type challenge_create_req: ChallengeCreateReq
@@ -115,7 +115,7 @@ def challenge_create(
115
115
@validate_call
116
116
defchallenge_create_with_http_info(
117
117
self,
118
-
user_id: Annotated[StrictStr, Field(description="ID of user")],
118
+
user_id: Annotated[StrictStr, Field(description="Unique identifier of the user. Format: `usr-<number>`. ")],
Create a new challenge to verify a login identifier
135
+
Creates a new challenge to verify a login identifier for a user by given `userID`. Challenges come in three flavors: **Email OTP**, **SMS OTP**, and **Email Magiclink**. **OTP** stands for One-Time Password. It is a unique code sent to the user via email or SMS, which they must enter to complete the verification process.
136
136
137
-
:param user_id: ID of user (required)
137
+
:param user_id: Unique identifier of the user. Format: `usr-<number>`. (required)
Create a new challenge to verify a login identifier
206
+
Creates a new challenge to verify a login identifier for a user by given `userID`. Challenges come in three flavors: **Email OTP**, **SMS OTP**, and **Email Magiclink**. **OTP** stands for One-Time Password. It is a unique code sent to the user via email or SMS, which they must enter to complete the verification process.
207
207
208
-
:param user_id: ID of user (required)
208
+
:param user_id: Unique identifier of the user. Format: `usr-<number>`. (required)
Updates a challenge (e.g. from pending to completed)
354
+
Updates a challenge for a user by given `userID` and `challengeID`. For example, this can be used to change the challenge status from `pending` to `completed`.
355
355
356
-
:param user_id: ID of user (required)
356
+
:param user_id: Unique identifier of the user. Format: `usr-<number>`. (required)
357
357
:type user_id: str
358
358
:param challenge_id: ID of challenge (required)
359
359
:type challenge_id: str
@@ -408,7 +408,7 @@ def challenge_update(
408
408
@validate_call
409
409
defchallenge_update_with_http_info(
410
410
self,
411
-
user_id: Annotated[StrictStr, Field(description="ID of user")],
411
+
user_id: Annotated[StrictStr, Field(description="Unique identifier of the user. Format: `usr-<number>`. ")],
412
412
challenge_id: Annotated[StrictStr, Field(description="ID of challenge")],
Updates a challenge (e.g. from pending to completed)
429
+
Updates a challenge for a user by given `userID` and `challengeID`. For example, this can be used to change the challenge status from `pending` to `completed`.
430
430
431
-
:param user_id: ID of user (required)
431
+
:param user_id: Unique identifier of the user. Format: `usr-<number>`. (required)
Updates a challenge (e.g. from pending to completed)
504
+
Updates a challenge for a user by given `userID` and `challengeID`. For example, this can be used to change the challenge status from `pending` to `completed`.
505
505
506
-
:param user_id: ID of user (required)
506
+
:param user_id: Unique identifier of the user. Format: `usr-<number>`. (required)
0 commit comments