Q #1 - Is it possible to change the SMS phone number after it has been set in the initial activation?
Q #2 - It looks like Postman collection “Authentication -> Enroll -> Enroll SMS Factor with New Number” can make a change
{{url}}/api/v1/authn/factors?updatePhone=true
with the body like this:
{
“stateToken”: “{{stateToken}}”,
“factorType”: “sms”,
“provider”: “OKTA”,
“profile”: {
“phoneNumber”: “+1 111 111 1111”
}
}
However, not sure how to get the “stateToken” value.
Thanks!