---
title: Manager with Application Oriented
description: The following are Ping Autonomous Identity manager with application oriented endpoints:
component: autonomous-identity
version: 2022.11.12
page_id: autonomous-identity:api-guide:chap-manager-with-app-api
canonical_url: https://docs.pingidentity.com/autonomous-identity/2022.11.12/api-guide/chap-manager-with-app-api.html
---

# Manager with Application Oriented

The following are Ping Autonomous Identity manager with application oriented endpoints:

* POST supervisor

  NOTE: This endpoint has been deprecated in this release by the `/entitlements/stats` endpoint.

Endpoint

```
/api/managersWithAppOriented/supervisor
```

Authorization

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

Body

```
{
	"managerId": "Christy.Cronin"
}
```

Example Request

```
curl --location --request POST '/api/managersWithAppOriented/supervisor' \
--header 'Content-Type: application/json' \
--data-raw '{
	"managerId": "Christy.Cronin"
}'
```

* POST supervisorEntitlements

  NOTE: This endpoint has been deprecated in this release by the `/entitlements/stats` endpoint.

Endpoint

```
/api/managersWithAppOriented/supervisorEntitlements
```

Authorization

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

Body

```
{
	"managerId": "Christy.Cronin"
}
```

Example Request

```
curl --location --request POST '/api/managersWithAppOriented/supervisorEntitlements' \
--header 'Content-Type: application/json' \
--data-raw '{
	"managerId": "Christy.Cronin"
}'
```

* POST supervisorUser

  NOTE: This endpoint has been deprecated in this release by the `/entitlements/stats` endpoint.

Endpoint

```
/api/managersWithAppOriented/supervisorUser
```

Authorization

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

Body

```
{
	"managerId": "Christy.Cronin"
}
```

Example Request

```
curl --location --request POST '/api/managersWithAppOriented/supervisorUser' \
--header 'Content-Type: application/json' \
--data-raw '{
	"managerId": "Christy.Cronin"
}'
```
