MyAccount Management
/- Retrieve my Profile
API versioning
Replace my User Profile
Retrieve my Profile Schema
Retrieve my Profile
OAuth 2.0 scope:
- okta.myAccount.profile.read
Retrieves the caller's Okta user profile, without attributes excluded by the Get my user profile schema
GET
curl -i -X GET \
https://okta-subdomain.pixtulate.com/idp/myaccount/profile \
-H 'Accept: application/json; okta-version=1.0.0'Example response
The properties defined in the user profile schema
Response
{ "createdAt": "2020-01-14T20:05:32.000Z", "modifiedAt": "2020-01-14T20:05:32.000Z", "profile": { "customBoolean": false, "foo": "bar", "login": "example@ex.ample.com", "mobilePhone": "+1(555)555-5555", "customInteger": 42 }, "_links": { "self": { … }, "describedBy": { … } } }