Retrieves the details of a specific user in an account from their email address

GET

https://api.walkme.com/public/v1/scim/Users/byEmail/:userEmail

  {
    "/v1/scim/Users/byEmail/:userEmail": {
      "get": {
        "tags": [
          "Users"
        ],
        "description": "Get details for a single user by the user\\'s email",
        "parameters": [
          {
            "in": "path",
            "required": true,
            "name": "userEmail",
            "description": "The user\\'s email",
            "type": "string"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "schema": {
              "$ref": "#/definitions/scimUser"
            }
          },
          "404": {
            "$ref": "#/responses/notFound"
          },
          "500": {
            "$ref": "#/responses/internalServerError"
          }
        }
      }
    }
  }
{  
   "schemas":[  
      "urn:ietf:params:scim:schemas:core:2.0:User"
   ],
   "id":"2819c223-7f76-453a-919d-413861904646",
   "name":{  
      "familyName":"Bugs",
      "givenName":"Bunny"
   },
   "userName":"[email protected]",
   "externalId":"[email protected]",
   "accessRole":"2819c223-7f76-453a-919d-74017042937",
   "meta":{  
      "resourceType":"User",
      "created":"2021-08-01T18:29:49.793Z",
      "lastModified":"2021-08-01T18:29:49.793Z",
      "lastLogin": "2021-10-25T14:29:41.000Z",  
      "location":"https://api.walkme.com/public/v1/scim/Users/2819c223-7f76-453a-919d-413861904646"
   },
    "allowedSystems": [
        "1234e22e-70d1-4f8d-b77a-12345f488f24"
   ]
}