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
Describe the bug
Looking at the documentation here,
We have an internal testing request thats sending a
POSTrequest toPOST /api/v1/users/{userId}/lifecycle/activate?sendEmail=falseWe're expecting this to return a response with
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=falseinspect response
SDK Versions
version 7.1.1
Additional Information
No response