# Retrieve details of a specific content token To get VPP account details ## Endpoint `GET /api/mdm/apps/account/vpp/{vpp_id}` ## Request URL `https://{server-hostname}:8383/api/mdm/apps/account/vpp/{vpp_id}` ## Scope `MDMDeviceMgmt.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory: `application/json` ### Path Parameters - **vpp_id** `string` — Mandatory: Unique identifier of the VPP content token. Obtain from the [Add VPP Account](https://www.manageengine.com/products/desktop-central/help/api/onpremise/volumepurchaseprogram-vpp.html)_addVppAccount) or [Get VPP Accounts](https://www.manageengine.com/products/desktop-central/help/api/onpremise/volumepurchaseprogram-vpp.html)_getVppAccount) response ## Sample Request ### Curl ```curl curl --request GET \ --url https://appdomain/api/mdm/apps/account/vpp/{vpp_id} \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json `JSON Object` - **non_vpp_apps_count** `integer` — Number of non-VPP apps added to the MDM App Repository - **location_name** `string` — Location name associated with the content token - **total_apps_count** `integer` — Total number of apps associated with this content token - **expiry_date** `long` — Epoch timestamp (milliseconds) when the content token expires - **last_sync_time** `long` — Epoch timestamp (milliseconds) of the last sync - **org_type** `integer` — The organization type of the content token - **organization_name** `string` — Organization name of the content token - **businessstore_id** `long` — Unique ID of the content token - **license_assign_type** `integer` — Type of VPP assignment. 1 = User Based Assignment, 2 = Device Based Assignment ### Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 Complete details of a specific VPP content token ```json { "non_vpp_apps_count": 2, "location_name": "Location Name - 2", "total_apps_count": 0, "expiry_date": 1639122831000, "last_sync_time": 1621574248750, "org_type": 1, "organization_name": "Zylker Inc", "businessstore_id": 9007199254741896, "license_assign_type": 2 } ``` ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 60 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.