We have a production (paid) version of Okta that is working fine. In the developer edition, it appears several user operations do not work, but return successful status codes.
In particular, when I send a POST to https://dev-xxxxx.okta.com/api/v1/users/{userId}
,
with this payload:
{
"profile": {
"firstName": "NewFirstName",
"lastName": "NewLastName",
"mobilePhone": "555-555-5555"
}
}
the response I get back is a 200, but none of the fields I changed have been updated. It almost seems like this is a limitation of the development edition. If this is the case, is this (and other differences) documented anywhere?
It seems if this function is not supported, I shouldn’t receive a 200 status code.