Retrieve details of a specific content token

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

To get VPP account details

Request URL

https://{server-hostname}:8383/api/mdm/apps/account/vpp/{vpp_id}

Scope

MDMDeviceMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!

- Path Parameters

vpp_idstringMandatory

Unique identifier of the VPP content token. Obtain from the Add VPP Account_addVppAccount) or Get VPP Accounts_getVppAccount) response

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
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
Hide Sub-Attributes
non_vpp_apps_countinteger

Number of non-VPP apps added to the MDM App Repository

location_namestring

Location name associated with the content token

total_apps_countinteger

Total number of apps associated with this content token

expiry_datelong

Epoch timestamp (milliseconds) when the content token expires

last_sync_timelong

Epoch timestamp (milliseconds) of the last sync

org_typeinteger

The organization type of the content token

organization_namestring

Organization name of the content token

businessstore_idlong

Unique ID of the content token

license_assign_typeinteger

Type of VPP assignment. 1 = User Based Assignment, 2 = Device Based Assignment

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Complete details of a specific VPP content token

Copied!
  {
    "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
  }
                
Show full

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.