---
title: Single view with application
description: The following is an Ping Autonomous Identity single view with applications endpoint:
component: autonomous-identity
version: 2022.11.12
page_id: autonomous-identity:api-guide:chap-singleview-with-app-api
canonical_url: https://docs.pingidentity.com/autonomous-identity/2022.11.12/api-guide/chap-singleview-with-app-api.html
section_ids:
  post_employees: POST employees
---

# Single view with application

|   |                                                                                            |
| - | ------------------------------------------------------------------------------------------ |
|   | This endpoint has been deprecated in this release and will be removed in a future release. |

|   |                                                                                             |
| - | ------------------------------------------------------------------------------------------- |
|   | This endpoint has been updated in this release to accept only string values for all fields. |

The following is an Ping Autonomous Identity single view with applications endpoint:

## POST employees

* POST employees

  Endpoint

  ```
  /api/singleViewWithApp/employees
  ```

  Authorization

  ```
  <Bearer Token JWT-value>
  ```

  Body

  ```
  {
  	"employeeId": "elizabeth.saiz",
  	"includeLastAccessed": "true",
  	"pageSize": "5"
  }
  ```

  Example Request

  ```
  curl --location --request POST '/api/singleViewWithApp/employees' \
  --header 'Content-Type: application/json' \
  --data-raw '{
  	"employeeId": "elizabeth.saiz",
  	"includeLastAccessed": "true",
  	"pageSize": "5"
  }'
  ```

  Example Response

  ```
  {
    "high": 0,
    "medium": 1,
    "low": 1,
    "avg_score": 0.25,
    "app_name": "",
    "app_id": "",
    "entitlement_name": "",
    "high_risk": null,
    "userEntt": [
      {
        "user": "elizabeth.saiz",
        "entitlement": "192aed21-a7d1-40c3-87a3-9dfa4a3d21f5",
        "app_id": "null",
        "app_name": "test3",
        "entitlement_name": "null",
        "freq": null,
        "frequnion": null,
        "high_risk": "null",
        "justification": [],
        "score": 0.1,
        "user_name": "alpha"
      },
      {
        "user": "elizabeth.saiz",
        "entitlement": "36bad416-d42c-47c2-991e-623aa3833028",
        "app_id": "null",
        "app_name": "test6",
        "entitlement_name": "null",
        "freq": null,
        "frequnion": null,
        "high_risk": "null",
        "justification": [],
        "score": 0.4,
        "user_name": "vce"
      }
    ],
    "user": "elizabeth.saiz",
    "entitlementsCount": 14,
    "entitlementsRemainingCount": 10,
    "lastEntitlementId": "36bad416-d42c-47c2-991e-623aa3833028"
  }
  ```
