# Sync all available content tokens Initiate sync for all VPP content tokens to fetch the latest app details and license info from Apple. ## Endpoint `POST /api/v1/mdm/apps/account/vpp/sync` ## Request ### Request URL `https://{server-hostname}:8383/api/v1/mdm/apps/account/vpp/sync` ### Scope `MDMDeviceMgmt.CREATE` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Content-Type** `string` — **Mandatory**: `application/json` - **Accept** `string` — **Mandatory**: `application/json` #### Request Body `application/json` - `remove_from_other_mdm` `boolean` — Optional Set to true to revoke licenses still associated with another MDM solution before syncing. ### Sample Request ```curl curl --request POST \ --url https://appdomain/api/v1/mdm/apps/account/vpp/sync \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' \ --data '{"remove_from_other_mdm":true}' ``` ### Sample Request Body ```json { "remove_from_other_mdm": true } ``` ## Response ### Possible Response Codes - **202** — HTTP code ### Sample Response: HTTP 202 ```text 202 Accepted ``` ## API Rate Limit ![](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.