# Retrieve details of all available content tokens Retrieve details of all VPP content tokens added to the MDM server. ## Endpoint `GET /api/v1/mdm/apps/account/vpp` ## Request URL `https://{server-hostname}:8383/api/v1/mdm/apps/account/vpp` ### Scope `MDMDeviceMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** (`string`, Mandatory): `application/json` ## Sample Request ```curl curl --request GET \ --url https://appdomain/api/v1/mdm/apps/account/vpp \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json - `non_vpp_app_count` (`integer`): Number of non-VPP apps added to the MDM App Repository - `vpp_token_details` (`JSON Array`): Array of content token detail objects containing businessstore_id, organisation_name, license_assign_type, and location_name - `trash_count` (`integer`): Number of iOS apps currently in Trash ## Possible Response Codes - **200**: HTTP code ## Sample Response: HTTP 200 List of all VPP content tokens with metadata: ```json { "non_vpp_app_count": 2, "vpp_token_details": [ { "location_name": "Location Name - 2", "businessstore_id": 9007199254741896, "organisation_name": "Zylker Inc", "license_assign_type": 2 } ], "trash_count": 0 } ``` No VPP accounts configured: ```json { "non_vpp_app_count": 0, "vpp_token_details": [], "trash_count": 0 } ``` ## Rate Limit ![Help](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.