Skip to content

GET User Information

Gets all the user attributes belonging to the current session.

GET {server URL}/mobileservices/application/{application ID}/roleservice/application/{application ID}/v2/Me
Accept: application/json
Authorization: Bearer {bearer token}
https://{server URL}/mobileservices/application/{application ID}/roleservice/application/{application ID}/v2/Me?auth=uaa

This returns the user info with the available user attributes in the detail property:

{
    "schemas": [
        "urn:ietf:params:scim:schemas:core:2.0:User"
    ],
    "id": "john.doe@acme.corp",
    "userName": "john.doe@acme.corp",
    "name": {
        "familyName": "Doe",
        "givenName": "John"
    },
    "emails": [
        {
            "value": "john.doe@acme.corp"
        }
    ],
    "roles": [
        "Admin",
        "Sales"
    ],
    "detail": {
        "email": [
            "john.doe@acme.corp"
        ],
        "Groups": [
            "SAPMS_Admin",
            "SAPMS_Sales"
        ],
        "family_name": [
            "Doe"
        ],
        "given_name": [
            "John"
        ],
        "SAPUID": [
            "S01234567"
        ],
        "acr": [
            "urn:oasis:names:tc:SAML:2.0:ac:classes:X509"
        ],
        "remoteEntityId": [
            "acme.account100.ondemand.com"
        ]
    }
}

Last update: April 15, 2026