-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Labels
Description
Describe the bug
Looking at the documentation here,
We have an internal testing request thats sending a POST request to POST /api/v1/users/{userId}/lifecycle/activate?sendEmail=false
const request: Okta.UserApiActivateUserRequest = {userId, sendEmail: false};
const activationToken: UserActivationToken = await oktaSdkClient().userApi.activateUser(request);
We're expecting this to return a response with
{
"activationToken": "XE6wE17zmphl3KqAPFxO",
"activationUrl": "https://{yourOktaDomain}/tokens/XE6wE17zmphl3KqAPFxO/verify"
}
specifically looking for the activationUrl since sendEmail is set to false per documentation
however the response doesn't seem to be including this still.
Could someone confirm that this is still the expected response?
(apologies - i know this is not an sdk issue)
Reproduction Steps?
POST /api/v1/users/{userId}/lifecycle/activate?sendEmail=false
inspect response
SDK Versions
version 7.1.1
Additional Information
No response
Reactions are currently unavailable