# Retrieve the full configuration details of a Exchange ActiveSync payload item To get Exchange Active Sync policy payload item ## Endpoint `GET /api/v1/mdm/profiles/{profile_id}/payloads/exchangeactivesyncpolicy/payloaditems/{payload_id}` ## Request ### Request URL `https://{server-hostname}:8383/api/v1/mdm/profiles/{profile_id}/payloads/exchangeactivesyncpolicy/payloaditems/{payload_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. - **payload_id** (`string`, Mandatory): Unique identifier of the payload item. Obtain from the [Get Payload Item IDs](https://www.manageengine.com/products/desktop-central/help/api/onpremise/ios-get-exchange-activesync-payload-ios.html) response. ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/v1/mdm/profiles/{profile_id}/payloads/exchangeactivesyncpolicy/payloaditems/{payload_id} \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` **JSON Object** - **payload_id** (`long`): Unique identifier of the payload item. - **account_name** (`string`): Account Name. Default: Exchange ActiveSync - **active_sync_host** (`string`): Active Sync Host - **allow_move** (`boolean`): Allow Move. Default: true - **prevent_move** (`boolean`): Prevent Move. Default: false - **disable_mail_recents_syncing** (`boolean`): Disable Mail Recents Syncing. Default: false - **use_only_mail_app** (`boolean`): Use Only Mail App. Default: false - **use_ssl** (`boolean`): Use Ssl. Default: true - **use_mime_encrypt** (`boolean`): Use Mime Encrypt. Default: false - **signing_cert_id** (`long`): Signing identity certificate ID obtained from the [Certificates API](https://www.manageengine.com/products/desktop-central/help/api/onpremise/certificates-get-certificates.html). - **encryption_cert_id** (`long`): Encryption identity certificate ID obtained from the [Certificates API](https://www.manageengine.com/products/desktop-central/help/api/onpremise/certificates-get-certificates.html). - **domain** (`string`): Domain. Default: %domainname% - **user_name** (`string`): User Name. Default: %upn% - **email_address** (`string`): Email Address. Default: %email% - **password** (`string`): Password (sensitive - write-only) - **password_id** (`long`): Password Id - **past_days_mail_to_sync** (`integer`): Past Days Mail To Sync. Default: 0 - **identity_cert_id** (`long`): Identity certificate ID obtained from the [Certificates API](https://www.manageengine.com/products/desktop-central/help/api/onpremise/certificates-get-certificates.html). Must be an identity certificate (`is_identity` = true) - **cert_compatible_ios4** (`boolean`): Cert Compatible Ios4. Default: false - **oauth** (`boolean`): Oauth. Default: false - **sync_calender** (`integer`): Calendar sync setting. Allowed values: 0=Default, 1=Restrict modification, 2=Disable sync, 3=Disable and restrict, 4=Enable sync, 5=Enable and restrict - **sync_contacts** (`integer`): Contacts sync setting. Allowed values: 0=Default, 1=Restrict modification, 2=Disable sync, 3=Disable and restrict, 4=Enable sync, 5=Enable and restrict - **sync_notes** (`integer`): Notes sync setting. Allowed values: 0=Default, 1=Restrict modification, 2=Disable sync, 3=Disable and restrict, 4=Enable sync, 5=Enable and restrict - **sync_mail** (`integer`): Mail sync setting. Allowed values: 0=Default, 1=Restrict modification, 2=Disable sync, 3=Disable and restrict, 4=Enable sync, 5=Enable and restrict - **sync_reminder** (`integer`): Reminders sync setting. Allowed values: 0=Default, 1=Restrict modification, 2=Disable sync, 3=Disable and restrict, 4=Enable sync, 5=Enable and restrict - **oauth_signin_url** (`string`): Oauth Signin Url - **oauth_token_request_url** (`string`): Oauth Token Request Url ### Possible Response Codes - **200** (`HTTP code`) ### Sample Response: HTTP 200 Full configuration details of Exchange ActiveSync payload item ```json { "prevent_move": false, "use_mime_encrypt": false, "payload_id": 9007199254741000, "disable_mail_recents_syncing": false, "allow_move": true, "use_ssl": true, "user_name": "user@zylker.com", "past_days_mail_to_sync": 7, "encryption_cert_id": -1, "email_address": "user@zylker.com", "signing_cert_id": -1, "account_name": "Exchange ActiveSync", "active_sync_host": "https://zylker.com", "use_only_mail_app": false } ``` ## Rate Limit ![](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.