# Store a password in the MDM password repository and retrieve a managed password ID for use in profile configurations Retrive the password for the particular ID mapped with profile payload ## Endpoints `POST /api/v1/mdm/managedpassword` ## Request URL `https://{server-hostname}:8383/api/v1/mdm/managedpassword` ## 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` - JSON Object - **managed_password** `string` **Mandatory**: Password to be stored in the MDM password repository ### Sample Request ```curl curl --request POST \ --url https://appdomain/api/v1/mdm/managedpassword \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' \ --data '{"managed_password":"********"}' ``` ### Sample Request Body Store a password in the MDM password repository ```json { "managed_password": "********" } ``` ## Response Parameters ### HTTP Code 200 Response Body: `application/json` - JSON Object - **managed_password_id** `long`: Unique identifier of the stored managed password ## Possible Response Codes - **200**: HTTP code ## Sample Response: HTTP 200 Managed password successfully stored ```json { "managed_password_id": 9007199254741000 } ``` ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 30 | **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.