# Retrieve detailed information about a specific profile Get a profile details ## Endpoint `GET /api/v1/mdm/profiles/{profile_id}` ## Request Details ### Request URL `https://{server-hostname}:8383/api/v1/mdm/profiles/{profile_id}` ### Scope `MDMDeviceMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — Mandatory `application/json` #### Path Parameters - **profile_id** `string` — Mandatory Unique identifier of the profile. Obtain from the [Create Profile](https://www.manageengine.com/products/desktop-central/help/api/onpremise/mdm-profiles-create-profile.html) or [Get Profiles](https://www.manageengine.com/products/desktop-central/help/api/onpremise/mdm-profiles-get-profile.html) response #### Query Parameters - **include** `string` — Optional To fetch payload details along with profile detail - **trashed** `integer` — Optional Include trash set to 0 by dexfault ( 0 - Exclude trash , 1 - Include trash , 2 - Only trash ) ### Sample Request ```curl curl --request GET \ --url 'https://appdomain/api/v1/mdm/profiles/{profile_id}?include=payloaditems&trashed=0' \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Details ### HTTP Code 200 #### Response Body — `application/json` `JSON Object` - **profile_id** `long` Unique identifier for the profile - **profile_name** `string` Name of the profile - **profile_description** `string` Description of the profile - **platform_type** `integer` Profile platform type: 1 - iOS, 2 - Android, 3 - Windows, 4 - Chrome, 5 - MAC and 6 - Apple TV - **scope** `integer` Scope of the profile - **profile_version** `integer` Current version of the profile - **profile_status** `string` Status of the profile - **profile_status_id** `integer` Status ID: 1 - Yet to Deploy, 110 - Published - **collection_id** `long` Collection ID of the profile - **payloads** `array` List of payload type names in the profile - **creation_time** `long` Creation timestamp in milliseconds since epoch - **last_modified_time** `long` Last modified timestamp in milliseconds since epoch - **created_by** `long` User ID of the creator - **last_modified_by** `long` User ID of the last modifier - **is_moved_to_trash** `boolean` Whether the profile has been moved to trash ### Possible Response Codes - **200** `HTTP code` ### Sample Response: HTTP 200 Full profile details with payloads and status ```json { "creation_time": 12312321312312, "last_modified_time": 213123213123, "profile_version": 1, "payloads": [ "restrictionspolicy", "passcodepolicy" ], "last_modified_by": 213900719925474100000, "profile_description": "Test IOS Restrictions Policy", "created_by": 21321312312, "collection_id": 2132131231241, "profile_name": "IOS Restrictions Policy", "profile_status": "Yet To Deploy", "platform_type": 1, "is_moved_to_trash": false, "profile_id": 12321312312, "scope": 0, "profile_status_id": 1 } ``` ## Rate Limits ![ ](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 120 | **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.