Retrieve failure details for apps that failed to sync via a 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

Retrieve the list of apps that failed to sync for a specific VPP content token

Request URL

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

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}/failure \
  --header 'Accept: application/json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
appsJSON Array

Array of app objects for which sync failed, including app group ID, name, icon, license count, package ID, and resource count

Show Sub-Attributes
JSON Object
Show Sub-Attributes
appgroupidlong

Group ID for the app

appnamestring

Name of the app

displayimagelocstring

URL of the icon image for the app

licensecountinteger

Total number of licenses available for this app

packageidlong

The unique package ID of the app

resourcecountinteger

Total number of devices or users associated with the app

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

List of apps that failed to sync via the content token

Copied!
  {
    "apps": [
      {
        "appname": "Zylker MDM",
        "packageid": 9007199254740996,
        "resourcecount": 12,
        "licensecount": 8,
        "displayimageloc": "https://www.zylker.com/image/thumb/display/source/100x100bb.jpg",
        "appgroupid": 9007199254741296
      }
    ]
  }
                
Show full

No apps have failed to sync

Copied!
  {
    "apps": []
  }
                
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.