wulf-pulse/.firecrawl/mimecast-hold.json
lorentz fcdec8e38b feat: Mimecast multi-tenant held mail viewer
- migration 062: mimecast_tenants table (company_id, client_id/secret, account_code)
- Seed Wulf (CUSA13A95) + Seubert (CUSA96A181) tenants
- MimecastClient.getHeldMessages(): full pagination via meta.pagination.next cursor
  (API always returns 10/page regardless of pageSize param, totalCount in meta)
- getMimecastClientForTenant() factory for per-tenant instantiation
- GET /api/mimecast/held?tenantId=&recipient= — fetches all tenants in parallel,
  merges + sorts by date, returns per-tenant counts + combined messages[]
- Held Mail tab on /admin/sync/mimecast (on-demand load, recipient filter,
  tenant badges, policy filter dropdown, DMARC/impersonation highlighted red)
2026-03-31 22:38:22 -04:00

1 line
No EOL
213 KiB
JSON
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{"success":true,"data":{"web":[{"url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/","title":"Get Hold Message List - API and Integrations | Mimecast","description":"This API endpoint can be used to get information about held messages, including the reason, hold level, sender and recipients.","position":1,"markdown":"**In this guide:**\n\n- [Description](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/#description)\n- [Pre-requisites](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/#pre-requisites)\n- [URI](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/#uri)\n- [Request Headers](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/#request-headers)\n- [Request Body](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/#request-body)\n- [Response](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/#response)\n- [Sample Code](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/#sample-code)\n\n#### Description\n\nThis API endpoint can be used to get information about held messages, including the reason, hold level, sender and recipients. The ID can be used to act on a message using the Release Message or Reject Message API endpoints.\n\n#### Pre-requisites\n\n- In order to successfully use this endpoint the logged in user must be a Mimecast administrator with at least the **Account \\| Dashboard \\| Read** permission.\n\n#### URI\n\nTo use this endpoint you send a POST request to:\n\n- /api/gateway/get-hold-message-list\n\n#### Request Headers\n\nThe following request headers must be included in your request:\n\n| **Field** | **Description** |\n| --- | --- |\n| Authorization | Please see the [Authorization](https://integrations.mimecast.com/documentation/api-overview/authorization/) guide for more information on building the Authorization header. |\n| x-mc-req-id | A randomly generated GUID, for example,<br>```<br>8578FCFC-A305-4D9A-99CB-F4D5ECEFE297<br>``` |\n| x-mc-app-id | The Application ID provided with your Registered API Application. |\n| x-mc-date | The current date and time in the following format, for example,<br>```<br>Tue, 24 Nov 2015 12:50:11 UTC<br>``` |\n\n#### Request Body\n\n```\n\n{\n\n \"data\": [\\\n\\\n {\\\n\\\n \"admin\": true,\\\n\\\n \"start\": \"2015-11-16T14:49:18+0000\",\\\n\\\n \"searchBy\": {\\\n\\\n \"fieldName\": \"String\",\\\n\\\n \"value\": \"String\"\\\n\\\n },\\\n\\\n \"end\": \"2015-11-16T14:49:18+0000\"\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n##### data\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n| admin | Boolean | Optional | Level of results to return. If false, only results for the currenlty authenticated user will be returned. If true, held messages for all recipients will be returned. The default value is false. |\n| searchBy | Object | Optional | Object data used to filter results |\n| start | Date String | Optional | The date and time of the earliest message to return, in the following format, 2011-12-03T10:15:30+0000 |\n| end | Date String | Optional | The date and time of the latest message to return, in the following format, 2011-12-03T10:15:30+0000 |\n\n##### searchBy\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n| value | String | Optional | The text used to filter results |\n| fieldName | String | Optional | Message fields to filter based on. Possible values are: all, subject, sender, recipient, reason\\_code |\n\n#### Response\n\n```\n\n{\n\n \"fail\": [],\n\n \"meta\": {\n\n \"status\": 200\n\n },\n\n \"data\": [\\\n\\\n {\\\n\\\n \"dateReceived\": \"String\",\\\n\\\n \"reason\": \"String\",\\\n\\\n \"reasonCode\": \"String\",\\\n\\\n \"id\": \"String\",\\\n\\\n \"size\": 1000,\\\n\\\n \"from\": {\\\n\\\n \"displayableName\": \"String\",\\\n\\\n \"emailAddress\": \"String\"\\\n\\\n },\\\n\\\n \"hasAttachments\": \"true\",\\\n\\\n \"route\": \"String\",\\\n\\\n \"policyInfo\": \"String\",\\\n\\\n \"fromHeader\": {\\\n\\\n \"displayableName\": \"String\",\\\n\\\n \"emailAddress\": \"String\"\\\n\\\n },\\\n\\\n \"to\": {\\\n\\\n \"displayableName\": \"String\",\\\n\\\n \"emailAddress\": \"String\"\\\n\\\n },\\\n\\\n \"reasonId\": \"String\",\\\n\\\n \"subject\": \"String\"\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n##### meta object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| status | Number | The function level status of the request. |\n\n##### meta\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| status | Number | The function level status of the request. |\n\n##### data\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| id | String | The Mimecast secure ID for a message |\n| reason | String | The summary reason for holding the message |\n| reasonId | String | Mirrors the reason field, formatted without spaces. However, reasonCode should be used instead |\n| reasonCode | String | Reason code for holding the message |\n| from | Object | Contains the envelope sender information |\n| fromHeader | Object | Contains the header sender information |\n| to | Object | Contains the envelope recipient information |\n| toHeader | Object | Contains the header recipient information |\n| subject | String | The message subject |\n| route | String | Direction of message being held. Possible values are: INBOUND, OUTBOUND, INTERNAL, EXTERNAL |\n| hasAttachments | Boolean | Returns true if the message contains attachments. False indicates no attachments |\n| size | Integer | The size of the message in bytes |\n| dateReceived | Date String | The timestamp of the message transmission |\n| policyInfo | String | Information or definition name triggering the message hold action |\n\n#### Sample Code\n\nSample code is provided to demonstrate how to use the API and is not representative of a production application. To use the sample code; complete the required variables as described, populate the desired values in the request body, and execute in your favorite IDE.  Please see the [Global Base URL's](https://integrations.mimecast.com/documentation/api-overview/global-base-urls/) page to find the correct base URL to use for your account.\n\nHTTPPythonC#PowerShellJava\n\n```\n\nPOST {base_url}/api/gateway/get-hold-message-list\n\nAuthorization: MC {accesskKey}:{Base64 encoded signed Data To Sign}\n\nx-mc-date: {dateTime}\n\nx-mc-req-id: {unique id}\n\nx-mc-app-id: {applicationId}\n\nContent-Type: application/json\n\nAccept: application/json\n\n\n\n{\n\n \"data\":[\\\n\\\n {\\\n\\\n \"data\":[\\\n\\\n {\\\n\\\n \"searchBy\": {\\\n\\\n \"value\": \"String\",\\\n\\\n \"fieldName\": \"String\"\\\n\\\n },\\\n\\\n \"start\": \"2015-11-16T14:49:18+0000\",\\\n\\\n \"admin\": true,\\\n\\\n \"end\": \"2015-11-16T14:49:18+0000\"\\\n\\\n }\\\n\\\n ]\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n```\n\nimport base64\n\nimport hashlib\n\nimport hmac\n\nimport uuid\n\nimport datetime\n\nimport requests\n\n\n\n# Setup required variables\n\nbase_url = \"https://xx-api.mimecast.com\"\n\nuri = \"/api/gateway/get-hold-message-list\"\n\nurl = base_url + uri\n\naccess_key = \"YOUR ACCESS KEY\"\n\nsecret_key = \"YOUR SECRET KEY\"\n\napp_id = \"YOUR APPLICATION ID\"\n\napp_key = \"YOUR APPLICATION KEY\"\n\n\n\n# Generate request header values\n\nrequest_id = str(uuid.uuid4())\n\nhdr_date = datetime.datetime.utcnow().strftime(\"%a, %d %b %Y %H:%M:%S\") + \" UTC\"\n\n\n\n# DataToSign is used in hmac_sha1\n\ndataToSign = ':'.join([hdr_date, request_id, uri, app_key])\n\n\n\n# Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\nhmac_sha1 = hmac.new(base64.b64decode(secret_key), dataToSign.encode(), digestmod=hashlib.sha1).digest()\n\n\n\n# Use the HMAC SHA1 value to sign the hdrDate + \":\" requestId + \":\" + URI + \":\" + appkey\n\nsig = base64.b64encode(hmac_sha1).rstrip()\n\n\n\n# Create request headers\n\nheaders = {\n\n 'Authorization': 'MC ' + access_key + ':' + sig.decode(),\n\n 'x-mc-app-id': app_id,\n\n 'x-mc-date': hdr_date,\n\n 'x-mc-req-id': request_id,\n\n 'Content-Type': 'application/json'\n\n}\n\n\n\npayload = {\n\n 'data': [\\\n\\\n {\\\n\\\n \"searchBy\": {\\\n\\\n \"value\": \"String\",\\\n\\\n \"fieldName\": \"String\"\\\n\\\n },\\\n\\\n \"start\": \"2015-11-16T14:49:18+0000\",\\\n\\\n \"admin\": true,\\\n\\\n \"end\": \"2015-11-16T14:49:18+0000\"\\\n\\\n }\\\n\\\n ]\n\n }\n\n\n\nr = requests.post(url=url, headers=headers, data=str(payload))\n\n\n\nprint(r.text)\n```\n\n```\n\nstatic void Main(string[] args)\n\n {\n\n //Setup required variables\n\n string baseUrl = \"https://xx-api.mimecast.com\";\n\n string uri = \"/api/gateway/get-hold-message-list\";\n\n string accessKey = \"YOUR ACCESS KEY\";\n\n string secretKey = \"YOUR SECRET KEY\";\n\n string appId = \"YOUR APPLICATION ID\";\n\n string appKey = \"YOUR APPLICATION KEY\";\n\n\n\n //Generate request header values\n\n string hdrDate = System.DateTime.Now.ToUniversalTime().ToString(\"R\");\n\n string requestId = System.Guid.NewGuid().ToString();\n\n\n\n //Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\n System.Security.Cryptography.HMAC h = new System.Security.Cryptography.HMACSHA1(System.Convert.FromBase64String(secretKey));\n\n\n\n //Use the HMAC SHA1 value to sign the hdrDate + \":\" requestId + \":\" + URI + \":\" + appkey\n\n byte[] hash = h.ComputeHash(System.Text.Encoding.Default.GetBytes(hdrDate + \":\" + requestId + \":\" + uri + \":\" + appKey));\n\n\n\n //Build the signature to be included in the Authorization header in your request\n\n string signature = \"MC \" + accessKey + \":\" + System.Convert.ToBase64String(hash);\n\n\n\n //Build Request\n\n System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(baseUrl + uri);\n\n request.Method = \"POST\";\n\n request.ContentType = \"application/json\";\n\n\n\n //Add Headers\n\n request.Headers[System.Net.HttpRequestHeader.Authorization] = signature;\n\n request.Headers.Add(\"x-mc-date\", hdrDate);\n\n request.Headers.Add(\"x-mc-req-id\", requestId);\n\n request.Headers.Add(\"x-mc-app-id\", appId);\n\n\n\n //Add request body\n\n //Create and write data to stream\n\n string postData = @\"{\n\n \"\"data\"\": [\\\n\\\n {\\\n\\\n \"\"searchBy\"\": {\\\n\\\n \"\"value\"\": \"\"String\"\",\\\n\\\n \"\"fieldName\"\": \"\"String\"\"\\\n\\\n },\\\n\\\n \"\"start\"\": \"\"2015-11-16T14:49:18+0000\"\",\\\n\\\n \"\"admin\"\": true,\\\n\\\n \"\"end\"\": \"\"2015-11-16T14:49:18+0000\"\"\\\n\\\n }\\\n\\\n ]\n\n }\";\n\n\n\n byte[] payload = System.Text.Encoding.UTF8.GetBytes(postData);\n\n\n\n System.IO.Stream stream = request.GetRequestStream();\n\n stream.Write(payload, 0, payload.Length);\n\n stream.Close();\n\n\n\n //Send Request\n\n System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse();\n\n\n\n //Output response to console\n\n System.IO.StreamReader reader = new System.IO.StreamReader(response.GetResponseStream());\n\n string responseBody = \"\";\n\n string temp = null;\n\n while ((temp = reader.ReadLine()) != null)\n\n {\n\n responseBody += temp;\n\n };\n\n System.Console.WriteLine(responseBody);\n\n System.Console.ReadLine();\n\n }\n```\n\n```\n\n#Setup required variables\n\n$baseUrl = \"https://xx-api.mimecast.com\"\n\n$uri = \"/api/gateway/get-hold-message-list\"\n\n$url = $baseUrl + $uri\n\n$accessKey = \"YOUR ACCESS KEY\"\n\n$secretKey = \"YOUR SECRET KEY\"\n\n$appId = \"YOUR APPLICATION ID\"\n\n$appKey = \"YOUR APPLICATION KEY\"\n\n\n\n#Generate request header values\n\n$hdrDate = (Get-Date).ToUniversalTime().ToString(\"ddd, dd MMM yyyy HH:mm:ss UTC\")\n\n$requestId = [guid]::NewGuid().guid\n\n\n\n#Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\n$sha = New-Object System.Security.Cryptography.HMACSHA1\n\n$sha.key = [Convert]::FromBase64String($secretKey)\n\n$sig = $sha.ComputeHash([Text.Encoding]::UTF8.GetBytes($hdrDate + \":\" + $requestId + \":\" + $uri + \":\" + $appKey))\n\n$sig = [Convert]::ToBase64String($sig)\n\n\n\n#Create Headers\n\n$headers = @{\"Authorization\" = \"MC \" + $accessKey + \":\" + $sig;\n\n \"x-mc-date\" = $hdrDate;\n\n \"x-mc-app-id\" = $appId;\n\n \"x-mc-req-id\" = $requestId;\n\n \"Content-Type\" = \"application/json\"}\n\n\n\n#Create post body\n\n$postBody = \"{\n\n \"\"data\"\": [\\\n\\\n {\\\n\\\n \"\"searchBy\"\": {\\\n\\\n \"\"value\"\": \"\"String\"\",\\\n\\\n \"\"fieldName\"\": \"\"String\"\"\\\n\\\n },\\\n\\\n \"\"start\"\": \"\"2015-11-16T14:49:18+0000\"\",\\\n\\\n \"\"admin\"\": true,\\\n\\\n \"\"end\"\": \"\"2015-11-16T14:49:18+0000\"\"\\\n\\\n }\\\n\\\n ]\n\n }\"\n\n\n\n#Send Request\n\n$response = Invoke-RestMethod -Method Post -Headers $headers -Body $postBody -Uri $url\n\n\n\n#Print the response\n\n$response\n```\n\n```\n\npublic static void main(String[] args) throws java.io.IOException, java.security.NoSuchAlgorithmException, java.security.InvalidKeyException {\n\n\n\n //set up variables for request\n\n String baseUrl = \"https://xx-api.mimecast.com\";\n\n String uri = \"/api/gateway/get-hold-message-list\";\n\n String url = \"https://\" + baseUrl + uri;\n\n String accessKey = \"YOUR ACCESS KEY\";\n\n String secretKey = \"YOUR SECRET KEY\";\n\n String appId = \"YOUR APPLICATION ID\";\n\n String appKey = \"YOUR APPLICATION KEY\";\n\n\n\n //create URL object\n\n java.net.URL obj = new java.net.URL(url);\n\n\n\n // set guid for x-mc-req-id header\n\n String guid = java.util.UUID.randomUUID().toString();\n\n\n\n // set date for x-mc-date header\n\n java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(\"EEE, d MMM yyyy HH:mm:ss z\");\n\n sdf.setTimeZone(java.util.TimeZone.getTimeZone(\"UTC\"));\n\n String date = sdf.format(new java.util.Date());\n\n\n\n //create signature for the Authorization header\n\n String dataToSign = date + \":\" + guid + \":\" + uri + \":\" + appKey;\n\n String hmacSHA1 = \"HmacSHA1\";\n\n javax.crypto.spec.SecretKeySpec signingKey = new javax.crypto.spec.SecretKeySpec(org.apache.commons.codec.binary.Base64.decodeBase64(secretKey.getBytes()), hmacSHA1);\n\n javax.crypto.Mac mac = javax.crypto.Mac.getInstance(hmacSHA1);\n\n mac.init(signingKey);\n\n String sig = new String(org.apache.commons.codec.binary.Base64.encodeBase64(mac.doFinal(dataToSign.getBytes())));\n\n\n\n // create request object\n\n javax.net.ssl.HttpsURLConnection con = (javax.net.ssl.HttpsURLConnection) obj.openConnection();\n\n\n\n //set request type to POST\n\n con.setRequestMethod(\"POST\");\n\n con.setDoOutput(true);\n\n\n\n //add reuqest headers\n\n con.setRequestProperty(\"Authorization\", \"MC \" + accessKey + \":\" + sig);\n\n con.setRequestProperty(\"x-mc-req-id\", guid);\n\n con.setRequestProperty(\"x-mc-app-id\", appId);\n\n con.setRequestProperty(\"x-mc-date\", date);\n\n con.setRequestProperty(\"Content-Type\", \"application/json\");\n\n con.setRequestProperty(\"Accept\", \"application/json\");\n\n\n\n //Add post body to the request\n\n String postBody = \"{\\n\" +\n\n \" \\\"data\\\": [\\n\" +\\\n\\\n \" {\\n\" +\\\n\\\n \" \\\"searchBy\\\": {\\n\" +\\\n\\\n \" \\\"value\\\": \\\"String\\\",\\n\" +\\\n\\\n \" \\\"fieldName\\\": \\\"String\\\"\\n\" +\\\n\\\n \" }\\n\" +\\\n\\\n \" \\\"start\\\": \\\"2015-11-16T14:49:18+0000\\\",\\n\" +\\\n\\\n \" \\\"admin\\\": true,\\n\" +\\\n\\\n \" \\\"end\\\": \\\"2015-11-16T14:49:18+0000\\\"\\n\" +\\\n\\\n \" }\\n\" +\\\n\\\n \" ]\\n\" +\n\n \"}\";\n\n java.io.OutputStream os = con.getOutputStream();\n\n os.write(postBody.getBytes(\"UTF-8\"));\n\n os.close();\n\n\n\n //process response\n\n java.io.BufferedReader in = new java.io.BufferedReader(\n\n new java.io.InputStreamReader(con.getInputStream()));\n\n String inputLine;\n\n StringBuffer response = new StringBuffer();\n\n\n\n while ((inputLine = in.readLine()) != null) {\n\n response.append(inputLine);\n\n }\n\n in.close();\n\n\n\n //return result\n\n java.lang.System.out.println(response.toString());\n\n }\n```\n\n[Back to Top](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/#)","metadata":{"og:url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/","language":"en","ogUrl":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/","description":"Mimecast API Get Hold Message List","ogTitle":"Get Hold Message List","theme-color":"#ffffff","VIcurrentDateTime":["639106058921755078>","639106058921755120"],"VirtualFolder":["\\","/"],"author":"mimecast","ogDescription":"Mimecast API Get Hold Message List","title":"Get Hold Message List | Mimecast","viewport":"width=device-width, initial-scale=1, shrink-to-fit=no","og:title":"Get Hold Message List","ogSiteName":"Mimecast","og:description":"Mimecast API Get Hold Message List","twitter:card":"summary_large_image","og:site_name":"Mimecast","robots":"index, follow","favicon":"https://integrations.mimecast.com/sc-static/img/favicons/icons_m_192x192.png","scrapeId":"019d46c9-4df1-70ca-9269-b003b417d54f","sourceURL":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/","url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/","statusCode":200,"contentType":"text/html; charset=utf-8","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"075cdec3-20a7-4ba3-8991-f5662657cd06","creditsUsed":1}},{"url":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024","title":"API & Integrations - New API Endpoints - Sep 2024 Mimecast","description":"Mimecast is pleased to announce the general availability of Secure Email Gateway Restful API Endpoints that allow users to configure and manage User and Group ...","position":2,"markdown":"Service Updates!\n\nTo stay informed, please visit the [Service Updates](https://mimecastsupport.zendesk.com/hc/en-us/sections/36032561852563-Service-Updates) page and click the _**Follow**_ button. Thank you!\n\nClose\n\n[Skip to main content](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#main-content)\n\nBrowse help topics\n\n- Application Downloads\n\n\n\n - Application Downloads\n\n\n- Knowledge Hubs\n\n\n\n - Core Security Products\n\n\n\n - Email Security - API\n\n\n\n - Onboarding\n\n - Guides\n\n - Analysis & Response\n\n - Human Risk Command Center\n\n - Archive\n\n - Services\n\n - Users & Groups\n\n\n\n - Authentication\n\n - Applications\n\n - Attributes\n\n - Directory Synchronization\n\n - Directories\n\n\n - Policies\n\n - Integrations\n\n - Account\n\n\n - Email Security - MX\n\n\n\n - Guides & Resources\n\n - Administration\n\n - Analysis & Response\n\n - Brand Indicators Message Identification (BIMI)\n\n - Connect Application\n\n - Connect Process\n\n - Content Examination\n\n - Continuity\n\n\n\n - Guides & Resources\n\n\n - Directory Synchronization\n\n - DNS-based Authentication of Named Entities (DANE)\n\n - Email Security Setup Wizard\n\n - Exchange\n\n - Journaling\n\n - Mail Flow\n\n - Message Routing\n\n - Mimecast Administration Console\n\n\n\n - Advanced Account Administration / Federated Account Administration\n\n - Message Center\n\n\n\n - Accepted Messages\n\n - Bounced Messages\n\n - Held Messages\n\n - Message Tracking\n\n - Rejected & Deferred Messages\n\n\n - Account\n\n\n\n - Account Settings\n\n - Audit Logs\n\n - Roles\n\n\n - Directories\n\n - Services\n\n\n\n - Applications\n\n - Authentication\n\n - Authentication Profiles\n\n - Secure Messages\n\n - SMS Dashboard\n\n\n - Notification Sets\n\n - Policies\n\n - Reporting\n\n\n\n - Mimecast Account Assessment Report\n\n\n - Spam / Phishing\n\n - Security & Efficacy\n\n - Service Monitor\n\n - Targeted Threat Protection\n\n\n\n - Attachment Protect\n\n\n\n - Guides & Resources\n\n\n - Impersonation Protect\n\n\n\n - Guides & Resources\n\n\n - Internal Email Protect\n\n - URL Protect\n\n\n\n - Guides & Resources\n\n\n - Threat Intelligence & Remediation\n\n\n - Email Security Cloud Integrated\n\n\n\n - Guides & Resources\n\n - Getting Started\n\n - Awareness Training\n\n - Configuration\n\n - User Management\n\n - Home\n\n - Detections\n\n - Mail Flow\n\n - Reporting & Analytics\n\n - Audit Logs\n\n - Advanced BEC\n\n - Engage\n\n - Collaboration Security\n\n\n\n - Protection for Sharepoint & OneDrive\n\n - Protection for Microsoft Teams\n\n\n - DMARC Analyzer\n\n - Sync & Recover\n\n - Targeted Threat Protection Attachment Protect\n\n\n - Security Add-Ons\n\n\n\n - DMARC Analyzer 2.0\n\n - Large File Send\n\n\n\n - Guides & Resources\n\n\n - Advanced BEC\n\n - Browser Isolation\n\n - Collaboration Security\n\n\n\n - Guides & Resources\n\n\n - Brand Exploit Protect\n\n\n\n - Guides & Resources\n\n\n - CyberGraph\n\n\n\n - Guides & Resources\n\n - Misaddressed Email Protect\n\n\n - DMARC Analyzer\n\n\n\n - Guides & Resources\n\n\n - Secure Messaging\n\n\n\n - Guides & Resources\n\n\n - Web Security\n\n\n\n - Guides & Resources\n\n - Overview\n\n - Configuration\n\n - Reporting\n\n - General\n\n - Mimecast Security Agent for iOS\n\n - Mimecast Security Agent for Mac\n\n - Mimecast Security Agent for Windows\n\n - Mimecast Security Agent for Windows Server\n\n - Troubleshooting\n\n\n - Human Risk Management\n\n\n\n - Human Risk Command Center\n\n - Incydr\n\n\n\n - Incydr administration\n\n\n\n - Incydr console reference\n\n - Configuring\n\n\n\n - SCIM provisioning\n\n - Identity management\n\n\n - Monitoring and managing\n\n\n\n - Roles resources\n\n - Incydr API resources\n\n - Incydr User Directory Sync resources\n\n - Device migration with the backup agent\n\n - Backup agent reporting\n\n\n - Planning and installing\n\n\n\n - Manage agent installations in your Incydr environment\n\n - Security hardening\n\n - Implement Incydr\n\n\n - Troubleshooting\n\n - Licenses\n\n\n - IRM Launchpad\n\n - Release notes\n\n\n\n - Incydr release notes\n\n - Previous version release notes\n\n\n - Terms and conditions\n\n\n\n - Platform support policy\n\n\n\n - Operating system support policy\n\n\n - Product lifecycle policy\n\n - Incydr customer support resources\n\n\n\n - Incydr product plans\n\n\n - Legal terms and conditions\n\n\n\n - Previous agreements\n\n\n - Compliance resources\n\n - Open source licenses\n\n\n - Announcements\n\n\n\n - Incydr announcements\n\n - Backup add-on announcements\n\n\n - Using the backup agent\n\n\n\n - Get started\n\n - Backup\n\n - Restore files\n\n - Configuring\n\n - Backup agent reference\n\n - Troubleshooting\n\n\n - API & Integrations\n\n\n\n - Guides & Resources\n\n\n - Awareness Training\n\n\n\n - Guides & Resources\n\n - Access & Overview\n\n - Settings & Configuration\n\n\n\n - Settings\n\n - Configuration\n\n - Rapid Deployment\n\n\n - Training Queues\n\n - Phishing Training\n\n - My Training Library\n\n - Reporting\n\n - Troubleshooting\n\n\n - Engage\n\n\n\n - Guides & Resources\n\n - Access and Overview\n\n - Settings & Configuration\n\n\n\n - Rapid Deployment\n\n - Configuration\n\n - Settings\n\n\n - Human Risk\n\n - Training Queues\n\n - Phishing Training\n\n - My Training Library\n\n - Reporting\n\n - Nudges\n\n - Scorecards\n\n - Troubleshooting\n\n\n - Data Governance, Compliance & Insights\n\n\n\n - Aware 2.0\n\n\n\n - Video How-to Tutorials\n\n\n\n - User Data Removal\n\n - Signal\n\n - Search & Discover\n\n - Retention\n\n - Data Hold\n\n\n - Risk Management Suite\n\n\n\n - Search & Discover\n\n - Data Hold\n\n - Retention\n\n\n - Platform Documentation\n\n - Platform Administrator Capabilities\n\n - Community Management & Insights\n\n\n\n - Spotlight\n\n - Signal\n\n - Example Use Cases\n\n\n - Archiving\n\n - Archive for Microsoft Teams\n\n\n\n - Guides & Resources\n\n\n - Case Review\n\n\n\n - Guides & Resources\n\n\n - eDiscovery\n\n - Mimecast Synchronization Engine\n\n - Aware\n\n\n\n - Community Management & Insights\n\n\n\n - Example Use Cases\n\n - Spotlight\n\n - Signal\n\n - Surveys\n\n\n - Risk Management Suite\n\n\n\n - User Data Removal\n\n - Retention\n\n - Data Hold\n\n - Search & Discover\n\n\n - Platform Administrator Capabilities\n\n - Platform Documentation\n\n - Video How-To Tutorials\n\n\n\n - Spotlight\n\n - Signal\n\n - Search & Discover\n\n - Data Hold\n\n - Retention\n\n - User Data Removal\n\n\n - Sync & Recover\n\n\n\n - Guides & Resources\n\n\n - Supervision\n\n\n\n - Guides & Resources\n\n\n - Simply Migrate\n\n\n\n - Guides & Resources\n\n\n - End User & Web Applications\n\n\n\n - User Portal\n\n - End User Assets\n\n - Mimecast Essentials for Outlook\n\n - Mimecast for Mac\n\n\n\n - Installation\n\n - Preferences & Settings\n\n - Using Your Mailboxes\n\n - Archive Folders\n\n - Managed Senders\n\n - Large File Send\n\n - Searching\n\n - Help & Feedback\n\n\n - Mimecast for Outlook\n\n - Mimecast Mobile\n\n\n\n - Installation\n\n - Using Mimecast Mobile\n\n - Configuration\n\n\n - Mimecast Personal Portal\n\n - Stationery\n\n\n - Mimecast Customer Care\n\n\n\n - Customer Alerts Notes\n\n - Mimecast University\n\n\n\n - Guides & Resources\n\n\n - Mimecast Partner\n\n\n\n - Jersey\n\n\n- Known Issues\n\n\n\n - API & Integrations\n\n - Awareness Training\n\n - Case Review\n\n - CyberGraph\n\n - Data Retention\n\n\n\n - Simply Migrate\n\n\n - DMARC Analyzer\n\n - Email Security Cloud Gateway\n\n - Email Security Cloud Integrated\n\n - End User Applications\n\n\n\n - Mimecast Essentials for Outlook\n\n - Mimecast for Mac\n\n - Mimecast Mobile\n\n - Mimecast for Outlook\n\n - Mimecast Personal Portal\n\n\n - Human Risk\n\n - Reporting\n\n - Sync & Recover\n\n - Targeted Threat Protection\n\n\n- Service Updates\n\n\n\n - Service Updates\n\n\n\n - [Engage - AI Phishing Template Generator - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49615256488723-Engage-AI-Phishing-Template-Generator-Mar-2026)\n - [Email Security MX - Account Takeover - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49854249918099-Email-Security-MX-Account-Takeover-Mar-2026)\n - [CyberGraph - Image Tracker EOL - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49682723223443-CyberGraph-Image-Tracker-EOL-Mar-2026)\n - [Aware - Slack Canvas & List Ingestion - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49856045983379-Aware-Slack-Canvas-List-Ingestion-Mar-2026)\n - [Email Security - API - Integration Updates - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49578960145939-Email-Security-API-Integration-Updates-Mar-2026)\n - [API & Integrations - Partner Tiles - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49477276604179-API-Integrations-Partner-Tiles-Mar-2026)\n - [API & Integrations - Threat Share Filtering Enhancement - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49451073844499-API-Integrations-Threat-Share-Filtering-Enhancement-Mar-2026)\n - [User Portal - Open Beta - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49448743876499-User-Portal-Open-Beta-Mar-2026)\n - [API & Integrations - Cisco XDR Integration - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49159095637011-API-Integrations-Cisco-XDR-Integration-Mar-2026)\n - [API & Integrations - Event Push UI Update - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49283209404563-API-Integrations-Event-Push-UI-Update-Mar-2026)\n - [Mimecast Customer Care - Scheduled Maintenance RSA Region - Feb 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49448769794067-Mimecast-Customer-Care-Scheduled-Maintenance-RSA-Region-Feb-2026)\n - [Browser Isolation - Integration Changes - Feb 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49244785207187-Browser-Isolation-Integration-Changes-Feb-2026)\n - [Analysis & Response - Enhanced Reported Emails Dashboard - Feb 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49024123179795-Analysis-Response-Enhanced-Reported-Emails-Dashboard-Feb-2026)\n - [Archive Search - Time Picker Support - Feb 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/49056341987347-Archive-Search-Time-Picker-Support-Feb-2026)\n - [Awareness Training - Streamlined Navigation - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48952358322835-Awareness-Training-Streamlined-Navigation-Mar-2026)\n - [Engage - Streamlined Navigation - Mar 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48952237880083-Engage-Streamlined-Navigation-Mar-2026)\n - [Awareness Training - Phishing Simulation with Attachments - Feb 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48841964996499-Awareness-Training-Phishing-Simulation-with-Attachments-Feb-2026)\n - [Engage - Phishing Simulation with Attachments - Feb 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48841679709075-Engage-Phishing-Simulation-with-Attachments-Feb-2026)\n - [Archiving - Search & Discover Improvements - Feb 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48839561896723-Archiving-Search-Discover-Improvements-Feb-2026)\n - [API & Integrations - CrowdStrike Threat Share URL Enhancements - Feb 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48839342828563-API-Integrations-CrowdStrike-Threat-Share-URL-Enhancements-Feb-2026)\n - [Policies - RTF Attachment Blocking Update - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48641956382355-Policies-RTF-Attachment-Blocking-Update-Jan-2026)\n - [DMARC Analyzer 2.0 - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48569977349651-DMARC-Analyzer-2-0-Jan-2026)\n - [Mimecast Administration Console - Governance & Compliance Menu Update - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48536561062803-Mimecast-Administration-Console-Governance-Compliance-Menu-Update-Jan-2026)\n - [Aware - Simplified User Onboarding - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48395474801555-Aware-Simplified-User-Onboarding-Jan-2026)\n - [API & Integrations - Application Management - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48328610333587-API-Integrations-Application-Management-Jan-2026)\n - [API & Integrations - Threat Share URL Sharing - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48328580736147-API-Integrations-Threat-Share-URL-Sharing-Jan-2026)\n - [Human Risk Command Center - Watchlist Rules Manager - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/46199309567379-Human-Risk-Command-Center-Watchlist-Rules-Manager-Jan-2026)\n - [Multi-Vector Threat Protection - Availablity Update - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48330834542099-Multi-Vector-Threat-Protection-Availablity-Update-Jan-2026)\n - [API & Integrations - Status Details - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48327808925715-API-Integrations-Status-Details-Jan-2026)\n - [Email Security Cloud Gateway - Archive Search Upgrade - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/47500424529171-Email-Security-Cloud-Gateway-Archive-Search-Upgrade-Jan-2026)\n - [Mimecast Partner - Partner Admin Access to Email Security Onboarding Restored - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/48130179284883-Mimecast-Partner-Partner-Admin-Access-to-Email-Security-Onboarding-Restored-Jan-2026)\n - [Engage - URL Click False Positive Remediation - Jan 2026](https://mimecastsupport.zendesk.com/hc/en-us/articles/47189702455443-Engage-URL-Click-False-Positive-Remediation-Jan-2026)\n - [Awareness Training - Direct Message Injection Update - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/47480583403283-Awareness-Training-Direct-Message-Injection-Update-Dec-2025)\n - [Engage - Direct Message Injection Update - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/47227302154003-Engage-Direct-Message-Injection-Update-Dec-2025)\n - [Multi-Vector Threat Protection - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46317566732435-Multi-Vector-Threat-Protection-Dec-2025)\n - [Onboarding - New Modular Onboarding - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44129759309075-Onboarding-New-Modular-Onboarding-Dec-2025)\n - [Aware 2.0 - Google Chat Integration - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/47258309365907-Aware-2-0-Google-Chat-Integration-Dec-2025)\n - [Archiving - Search & Discover for Email - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46625362130323-Archiving-Search-Discover-for-Email-Dec-2025)\n - [Archiving - Archive Search Reporting Updates - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46985139455123-Archiving-Archive-Search-Reporting-Updates-Dec-2025)\n - [Engage - US Season 8 - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/47190912579987-Engage-US-Season-8-Dec-2025)\n - [Awareness Training - US Season 8 - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/47190276429971-Awareness-Training-US-Season-8-Dec-2025)\n - [Confirmation and Analyst Classification for CyberGraph Reports in MEIR - Dec 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/47079339078803-Confirmation-and-Analyst-Classification-for-CyberGraph-Reports-in-MEIR-Dec-2025)\n - [End User Applications - Message Reporting - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46859003437331-End-User-Applications-Message-Reporting-Nov-2025)\n - [API & Integrations - Zscaler Threat Share Government Cloud Region Support - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46856547937939-API-Integrations-Zscaler-Threat-Share-Government-Cloud-Region-Support-Nov-2025)\n - [Engage - Teams Nudges - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46695143680915-Engage-Teams-Nudges-Nov-2025)\n - [API & Integrations - Event Push Integration - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46464059376147-API-Integrations-Event-Push-Integration-Nov-2025)\n - [Engage - Human Risk Scorecards - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43738449011987-Engage-Human-Risk-Scorecards-Nov-2025)\n - [Removal of Support for TLS Client-Initiated Renegotiation - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46172400267155-Removal-of-Support-for-TLS-Client-Initiated-Renegotiation-Nov-2025)\n - [Mimecast Administration Console - Menu Update - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46202087876243-Mimecast-Administration-Console-Menu-Update-Nov-2025)\n - [Engage - Multilingual Enhancements for Mentor Videos - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46465652895763-Engage-Multilingual-Enhancements-for-Mentor-Videos-Nov-2025)\n - [Awareness Training - Multilingual Enhancements for Mentor Videos - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46466770571795-Awareness-Training-Multilingual-Enhancements-for-Mentor-Videos-Nov-2025)\n - [Analysis & Response - Reported Emails Filtering Options - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/46270225227539-Analysis-Response-Reported-Emails-Filtering-Options-Nov-2025)\n - [Human Risk Command Center - Human Risk Score Reset - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45499820369683-Human-Risk-Command-Center-Human-Risk-Score-Reset-Nov-2025)\n - [Engage - Okta Integration - Nov 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42418338097683-Engage-Okta-Integration-Nov-2025)\n - [Mimecast Administration Console - Menu Update - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45467036112403-Mimecast-Administration-Console-Menu-Update-Oct-2025)\n - [Advanced BEC - Reporting Cases Through Zendesk - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45568646781971-Advanced-BEC-Reporting-Cases-Through-Zendesk-Oct-2025)\n - [Mimecast Personal Portal - Outlook Add-in - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44561800933011-Mimecast-Personal-Portal-Outlook-Add-in-Oct-2025)\n - [API & Integrations - Cisco Duo Integration - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45594047574291-API-Integrations-Cisco-Duo-Integration-Oct-2025)\n - [Advanced BEC - Detection Summarization - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44427154408467-Advanced-BEC-Detection-Summarization-Oct-2025)\n - [Email Security Cloud Gateway - Account Takeover - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45171979474963-Email-Security-Cloud-Gateway-Account-Takeover-Oct-2025)\n - [API & Integrations - Splunk - Update to v.5.4.0 - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45662914163475-API-Integrations-Splunk-Update-to-v-5-4-0-Oct-2025)\n - [Targeted Threat Protection - URL Pre-Delivery Action - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43671505743123-Targeted-Threat-Protection-URL-Pre-Delivery-Action-Oct-2025)\n - [Engage - Direct Message Injection - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44164393956883-Engage-Direct-Message-Injection-Oct-2025)\n - [Awareness Training - Direct Message Injection - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44164315587091-Awareness-Training-Direct-Message-Injection-Oct-2025)\n - [Planned Maintenance - ZA Outage - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45036561348115-Planned-Maintenance-ZA-Outage-Oct-2025)\n - [Engage - Multi-Language Phishing Templates - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45400264241939-Engage-Multi-Language-Phishing-Templates-Oct-2025)\n - [Awareness Training - Multi-Language Phishing Templates - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/45399693651987-Awareness-Training-Multi-Language-Phishing-Templates-Oct-2025)\n - [API & integrations - KnowBe4 Outlook End User Reporting - Oct 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44970598688787-API-integrations-KnowBe4-Outlook-End-User-Reporting-Oct-2025)\n - [API & Integrations - Availability of Integrations for Cloud Gateway Customers using Human Risk Command Center - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44540599070611-API-Integrations-Availability-of-Integrations-for-Cloud-Gateway-Customers-using-Human-Risk-Command-Center-Sep-2025)\n - [Planned Maintenance - ZA Outage - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43995582058771-Planned-Maintenance-ZA-Outage-Sep-2025)\n - [API & Integrations - Changes to Admin IP Restrictions - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44764533235347-API-Integrations-Changes-to-Admin-IP-Restrictions-Sep-2025)\n - [Engage - Indicators of Phishing Landing Page - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44198891887251-Engage-Indicators-of-Phishing-Landing-Page-Sep-2025)\n - [Awareness Training - Indicators of Phishing Landing Page - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43004554261267-Awareness-Training-Indicators-of-Phishing-Landing-Page-Sep-2025)\n - [Mimecast Administration Console - New Menu Opt out Phase - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42841549775507-Mimecast-Administration-Console-New-Menu-Opt-out-Phase-Sep-2025)\n - [API & Integrations - Palo Alto Networks Cortex XDR - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/44162718690195-API-Integrations-Palo-Alto-Networks-Cortex-XDR-Sep-2025)\n - [CyberGraph - Banner Search Enhancements - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43251786925843-CyberGraph-Banner-Search-Enhancements-Sep-2025)\n - [CyberGraph - Administrator Activity Log Entries - Sep 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43220251803411-CyberGraph-Administrator-Activity-Log-Entries-Sep-2025)\n - [Administration Console - New Menu Search and Favorites - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43831507613715-Administration-Console-New-Menu-Search-and-Favorites-Aug-2025)\n - [Case Review - Display additional message info and block senders - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43476049848595-Case-Review-Display-additional-message-info-and-block-senders-Aug-2025)\n - [Mimecast Human Risk Insights (MHRI) Report - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43861231883667-Mimecast-Human-Risk-Insights-MHRI-Report-Aug-2025)\n - [API & Integrations - Analysis & Response Details API August 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43374297764371-API-Integrations-Analysis-Response-Details-API-August-2025)\n - [API & Integrations - Microsoft Defender for Endpoint Threat Share - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43832038963987-API-Integrations-Microsoft-Defender-for-Endpoint-Threat-Share-Aug-2025)\n - [URL Protect - Enhanced Attachment Scanning for QR Codes - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43099658664211-URL-Protect-Enhanced-Attachment-Scanning-for-QR-Codes-Aug-2025)\n - [Engage - Microsoft Attack Simulation Integration - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43602850773779-Engage-Microsoft-Attack-Simulation-Integration-Aug-2025)\n - [API & Integrations - API 1.0 End-of-Life Project Extension - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43572890309651-API-Integrations-API-1-0-End-of-Life-Project-Extension-Aug-2025)\n - [API & Integrations - Engage Sophos Integration - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43010501339283-API-Integrations-Engage-Sophos-Integration-Aug-2025)\n - [Human Risk Command Center - Aug 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41193705355923-Human-Risk-Command-Center-Aug-2025)\n - [Mimecast Administration Console - Workspace Favorites - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43222253211155-Mimecast-Administration-Console-Workspace-Favorites-Jul-2025)\n - [URL Protect - Microsoft Teams Update Action Required - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43382552280083-URL-Protect-Microsoft-Teams-Update-Action-Required-Jul-2025)\n - [Engage - Nudge Video Player Language Support - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/43004679684243-Engage-Nudge-Video-Player-Language-Support-Jul-2025)\n - [Mimecast Personal Portal - Branding Support - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42773588791059-Mimecast-Personal-Portal-Branding-Support-Jul-2025)\n - [Email Security Cloud Integrated Display Message Content for All Threat Types - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42813631445523-Email-Security-Cloud-Integrated-Display-Message-Content-for-All-Threat-Types-Jul-2025)\n - [Engage - Tracking Reported Phishing Emails After User Clicks or Submits Data - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42880342562835-Engage-Tracking-Reported-Phishing-Emails-After-User-Clicks-or-Submits-Data-Jul-2025)\n - [Awareness Training - Tracking Reported Phishing Emails After User Clicks or Submits Data - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42904080484755-Awareness-Training-Tracking-Reported-Phishing-Emails-After-User-Clicks-or-Submits-Data-Jul-2025)\n - [Case Review - Retention Adjustments & Message Actions - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42044439269523-Case-Review-Retention-Adjustments-Message-Actions-Jul-2025)\n - [Engage - Test Campaigns - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42714963870227-Engage-Test-Campaigns-Jul-2025)\n - [Awareness Training - Test Campaigns - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42842308680595-Awareness-Training-Test-Campaigns-Jul-2025)\n - [Engage - Mapping Difficulty Level to Phishing Templates - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42879739494291-Engage-Mapping-Difficulty-Level-to-Phishing-Templates-Jul-2025)\n - [Awareness Training - Mapping Difficulty Level to Phishing Templates - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42878909932947-Awareness-Training-Mapping-Difficulty-Level-to-Phishing-Templates-Jul-2025)\n - [Engage - Multi Group Phishing Campaigns - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42841559526803-Engage-Multi-Group-Phishing-Campaigns-Jul-2025)\n - [Awareness Training - Multi Group Phishing Campaigns - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42844561375635-Awareness-Training-Multi-Group-Phishing-Campaigns-Jul-2025)\n - [Engage - UK Season 3 - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42690161344787-Engage-UK-Season-3-Jul-2025)\n - [Awareness Training - UK Season 3 - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42690648247187-Awareness-Training-UK-Season-3-Jul-2025)\n - [CyberGraph - Audit Log Changes - Jul 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42074933192979-CyberGraph-Audit-Log-Changes-Jul-2025)\n - [Mimecast Customer Care - Global Support Zoom Contact Center - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41898170019091-Mimecast-Customer-Care-Global-Support-Zoom-Contact-Center-Jun-2025)\n - [Mimecast Personal Portal - New UI - June 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42076860644499-Mimecast-Personal-Portal-New-UI-June-2025)\n - [API & Integrations - Blocked Senders Policy Management and User Group Endpoints - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41899112734355-API-Integrations-Blocked-Senders-Policy-Management-and-User-Group-Endpoints-Jun-2025)\n - [Engage - Sensitive Data Handling Nudges - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42043191102867-Engage-Sensitive-Data-Handling-Nudges-Jun-2025)\n - [CyberGraph - Message Blocking - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42075149393299-CyberGraph-Message-Blocking-Jun-2025)\n - [Brand Exploit Protect - Integration With Mimecast API 2.0 - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41618725541779-Brand-Exploit-Protect-Integration-With-Mimecast-API-2-0-Jun-2025)\n - [CyberGraph - Language Support - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41194448904979-CyberGraph-Language-Support-Jun-2025)\n - [Email Security Cloud Integrated - Advanced Business Email Compromise Policies - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40586322475539-Email-Security-Cloud-Integrated-Advanced-Business-Email-Compromise-Policies-Jun-2025)\n - [API & Integrations - Microsoft Entra ID Protection - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41810471603987-API-Integrations-Microsoft-Entra-ID-Protection-Jun-2025)\n - [Engage - Teams Nudges - June 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41097271601683-Engage-Teams-Nudges-June-2025)\n - [Mimecast Essentials for Outlook - Nested Application Authentication - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41615510582803-Mimecast-Essentials-for-Outlook-Nested-Application-Authentication-Jun-2025)\n - [API & Integrations - Enhancing API Gateway Resilience - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41019270938643-API-Integrations-Enhancing-API-Gateway-Resilience-Jun-2025)\n - [Mimecast Partner - Partner Onboarding - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39991339578643-Mimecast-Partner-Partner-Onboarding-Jun-2025)\n - [API & Integrations - CrowdStrike Falcon Threat Share Integration v2 - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41592150635411-API-Integrations-CrowdStrike-Falcon-Threat-Share-Integration-v2-May-2025)\n - [Case Review - Export Cases List - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41236340727827-Case-Review-Export-Cases-List-May-2025)\n - [Case Review - Delete Saved Search - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41233950328083-Case-Review-Delete-Saved-Search-May-2025)\n - [Email Security Cloud Integrated - QR Code Scanning - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41453446595731-Email-Security-Cloud-Integrated-QR-Code-Scanning-May-2025)\n - [Email Security Cloud Gateway - QR Code Scanning - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41446085539475-Email-Security-Cloud-Gateway-QR-Code-Scanning-May-2025)\n - [Sync & Recover Progress Reporting Revamp - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40657122505235-Sync-Recover-Progress-Reporting-Revamp-May-2025)\n - [Policies - Block Dangerous File Types - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41194884365203-Policies-Block-Dangerous-File-Types-May-2025)\n - [Engage - SentinelOne Integration - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41051134288403-Engage-SentinelOne-Integration-May-2025)\n - [Case Review - Export Mailbox Holds - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41199329276179-Case-Review-Export-Mailbox-Holds-May-2025)\n - [Case Review - Export Selected Messages - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41157028621971-Case-Review-Export-Selected-Messages-May-2025)\n - [Case Review - Search on Smart Tags - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41015031716883-Case-Review-Search-on-Smart-Tags-May-2025)\n - [API & Integrations - Zscaler Threat Share - Service Update - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40621982206739-API-Integrations-Zscaler-Threat-Share-Service-Update-May-2025)\n - [Engage - Localization for Customizable Correct Answers and Safety Tips - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40401341306515-Engage-Localization-for-Customizable-Correct-Answers-and-Safety-Tips-May-2025)\n - [Awareness Training - Localization for Customizable Correct Answers and Safety Tips - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40361824425491-Awareness-Training-Localization-for-Customizable-Correct-Answers-and-Safety-Tips-May-2025)\n - [Email Security Cloud Integrated - Application Consent for Single Sign-On - May 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39056854413971-Email-Security-Cloud-Integrated-Application-Consent-for-Single-Sign-On-May-2025)\n - [Mimecast Administration Console - Navigation - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39527974034835-Mimecast-Administration-Console-Navigation-Apr-2025)\n - [Engage - Slack Nudges - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39668429154195-Engage-Slack-Nudges-Apr-2025)\n - [DMARC Analyzer - Microsoft Changes - April 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/41524217732243-DMARC-Analyzer-Microsoft-Changes-April-2025)\n - [Engage - Netskope DLP for Human Risk - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40395226376851-Engage-Netskope-DLP-for-Human-Risk-Apr-2025)\n - [Engage - Customizable Nudges - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40245209049875-Engage-Customizable-Nudges-Apr-2025)\n - [API & Integrations - New API Endpoints - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39919006829715-API-Integrations-New-API-Endpoints-Apr-2025)\n - [Engage - Program Overview Page Enhancements - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40354179802771-Engage-Program-Overview-Page-Enhancements-Apr-2025)\n - [Engage - Mentor Series - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40205960215571-Engage-Mentor-Series-Apr-2025)\n - [Awareness Training - Mentor Series - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40210101738131-Awareness-Training-Mentor-Series-Apr-2025)\n - [Engage - Human Risk Platform Maintenance - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40424986728979-Engage-Human-Risk-Platform-Maintenance-Apr-2025)\n - [Email Security Cloud Integrated - Enhanced Audit Logs - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40171335595411-Email-Security-Cloud-Integrated-Enhanced-Audit-Logs-Apr-2025)\n - [Case Review - Update to Case Review Exports - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39917900028435-Case-Review-Update-to-Case-Review-Exports-Apr-2025)\n - [API & Integrations - The Integrations Hub - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39248014333587-API-Integrations-The-Integrations-Hub-Apr-2025)\n - [Engage - Microsoft Purview Integration - Email Security Cloud Gateway - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40137472794387-Engage-Microsoft-Purview-Integration-Email-Security-Cloud-Gateway-Apr-2025)\n - [Engage - Microsoft Purview Integration - Email Security Cloud Integrated - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/40137477958675-Engage-Microsoft-Purview-Integration-Email-Security-Cloud-Integrated-Apr-2025)\n - [Email Security Cloud Integrated - Home Page and Reporting Enhancements - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39455015583763-Email-Security-Cloud-Integrated-Home-Page-and-Reporting-Enhancements-Apr-2025)\n - [Email Security Cloud Integrated - Mimecast Support Access - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39058814050067-Email-Security-Cloud-Integrated-Mimecast-Support-Access-Apr-2025)\n - [Mimecast Administration Console - Workspace - Apr 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38697492187667-Mimecast-Administration-Console-Workspace-Apr-2025)\n - [API & Integrations - API 1.0 End of Life - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39704312201235-API-Integrations-API-1-0-End-of-Life-Mar-2025)\n - [Engage - Microsoft Defender for Office 365 Integration - Email Security Cloud Gateway - March 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39674615141907-Engage-Microsoft-Defender-for-Office-365-Integration-Email-Security-Cloud-Gateway-March-2025)\n - [Engage - Microsoft Defender for Office 365 Integration - Email Security Cloud Integrated - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39702859676691-Engage-Microsoft-Defender-for-Office-365-Integration-Email-Security-Cloud-Integrated-Mar-2025)\n - [Engage - Season 7 - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39702809417491-Engage-Season-7-Mar-2025)\n - [Awareness Training - Season 7 - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39564521941907-Awareness-Training-Season-7-Mar-2025)\n - [Email Security Cloud Integrated - Additional Re-write Settings - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39391552973843-Email-Security-Cloud-Integrated-Additional-Re-write-Settings-Mar-2025)\n - [One Mimecast - Partner Portal Enhancement - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39243481704339-One-Mimecast-Partner-Portal-Enhancement-Mar-2025)\n - [Email Security Cloud Integrated - Localization Settings - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38878778683667-Email-Security-Cloud-Integrated-Localization-Settings-Mar-2025)\n - [Engage - Incydr Integration for Email Security Cloud Gateway - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39459978202131-Engage-Incydr-Integration-for-Email-Security-Cloud-Gateway-Mar-2025)\n - [Engage - Incydr Integration for Email Security Cloud Integrated - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/39385262314771-Engage-Incydr-Integration-for-Email-Security-Cloud-Integrated-Mar-2025)\n - [Engage - Malware Nudges - Mar 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38672179063443-Engage-Malware-Nudges-Mar-2025)\n - [Email Security Cloud Integrated - Event Timeline - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38698948217619-Email-Security-Cloud-Integrated-Event-Timeline-Feb-2025)\n - [Audit Logs - Date Range - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38639484609171-Audit-Logs-Date-Range-Feb-2025)\n - [Email Security Cloud Gateway - DANE - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38401562665491-Email-Security-Cloud-Gateway-DANE-Feb-2025)\n - [Email Security Cloud Integrated - Restore Remediated Messages - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/37881191589779-Email-Security-Cloud-Integrated-Restore-Remediated-Messages-Feb-2025)\n - [Sync & Recover - Sort , Search & Filter - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/37978066980627-Sync-Recover-Sort-Search-Filter-Feb-2025)\n - [Mimecast Essentials for Outlook - Authentication Changes - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38502546375571-Mimecast-Essentials-for-Outlook-Authentication-Changes-Feb-2025)\n - [Mimecast Synchronization Engine - Release 4.5.0.525 - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38327930699411-Mimecast-Synchronization-Engine-Release-4-5-0-525-Feb-2025)\n - [DNS Authentication - Inbound Notification - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38180509103891-DNS-Authentication-Inbound-Notification-Feb-2025)\n - [Enhanced Security Efficacy Improvements - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38217399792787-Enhanced-Security-Efficacy-Improvements-Feb-2025)\n - [CyberGraph 2.0 - Banners in Older Messages - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/36394066711443-CyberGraph-2-0-Banners-in-Older-Messages-Feb-2025)\n - [Email Security Cloud Integrated - Detections Sub-categories - Jan 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/37934686562451-Email-Security-Cloud-Integrated-Detections-Sub-categories-Jan-2025)\n - [Email Security Cloud Integrated - Delete from Quarantine - Jan 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/37435416109587-Email-Security-Cloud-Integrated-Delete-from-Quarantine-Jan-2025)\n - [Collaboration Security - Protection for Microsoft Teams SharePoint & OneDrive - Jan 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/37300366000275-Collaboration-Security-Protection-for-Microsoft-Teams-SharePoint-OneDrive-Jan-2025)\n - [End User Applications - Ability to Print - Jan 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/36992322029587-End-User-Applications-Ability-to-Print-Jan-2025)\n - [Case Review - Exports - Jan 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/37056186760211-Case-Review-Exports-Jan-2025)\n - [End User Applications - Mimecast Mobile Android Support - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36506883790611-End-User-Applications-Mimecast-Mobile-Android-Support-Dec-2024)\n - [Email Security Cloud Integrated - Policy Filter in Detection Search - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36582208328339-Email-Security-Cloud-Integrated-Policy-Filter-in-Detection-Search-Dec-2024)\n - [Email Security Cloud Integrated - Graymail Filtering Options - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36580706428691-Email-Security-Cloud-Integrated-Graymail-Filtering-Options-Dec-2024)\n - [Email Security Cloud Integrated - Browser Isolation - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36345336555795-Email-Security-Cloud-Integrated-Browser-Isolation-Dec-2024)\n - [API & Integrations - Engage CrowdStrike Integration CG - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36347457125651-API-Integrations-Engage-CrowdStrike-Integration-CG-Dec-2024)\n - [API & Integrations - Engage CrowdStrike Integration CI - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36347416369939-API-Integrations-Engage-CrowdStrike-Integration-CI-Dec-2024)\n - [Policies - Custom Header - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36264807183507-Policies-Custom-Header-Dec-2024)\n - [Mimecast Education - Course Player - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36583572355347-Mimecast-Education-Course-Player-Dec-2024)\n - [Email Security Cloud Integrated - Streamlined Allow & Block Sender Actions - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36145352944915-Email-Security-Cloud-Integrated-Streamlined-Allow-Block-Sender-Actions-Dec-2024)\n - [API & Integrations - API 1.0 End of Life - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36581892192659-API-Integrations-API-1-0-End-of-Life-Dec-2024)\n - [Email Security Cloud Integrated - Weekly Reports - Dec 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/36142265483795-Email-Security-Cloud-Integrated-Weekly-Reports-Dec-2024)\n - [Engage - Phishing Simulation Usability Enhancements - Nov 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/35173308491923-Engage-Phishing-Simulation-Usability-Enhancements-Nov-2024)\n - [Awareness Training - Phishing Simulation Usability Enhancements - Nov 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/35173309892115-Awareness-Training-Phishing-Simulation-Usability-Enhancements-Nov-2024)\n - [Mimecast Customer Care - Support Experience Pilot Program Conclusion - Nov 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/35611277067667-Mimecast-Customer-Care-Support-Experience-Pilot-Program-Conclusion-Nov-2024)\n - [Email Security Cloud Gateway - Captcha Abuse Detection - Nov 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/35170883311763-Email-Security-Cloud-Gateway-Captcha-Abuse-Detection-Nov-2024)\n - [Email Security Cloud Integrated - Captcha Abuse Detection - Nov 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/35403685398547-Email-Security-Cloud-Integrated-Captcha-Abuse-Detection-Nov-2024)\n - [Email Security Cloud Integrated - Alerts for Malware and Phishing Quarantine - Nov 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/35172204962451-Email-Security-Cloud-Integrated-Alerts-for-Malware-and-Phishing-Quarantine-Nov-2024)\n - [API & Integrations - IBM QRadar (SIEM v3) - Nov 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/38031222665491-API-Integrations-IBM-QRadar-SIEM-v3-Nov-2024)\n - [Mimecast Customer Care - Support Experience and Mimecaster Central - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34194735094803-Mimecast-Customer-Care-Support-Experience-and-Mimecaster-Central-Oct-2024)\n - [Attachment Protect - Monitoring Attachments - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000866920595-Attachment-Protect-Monitoring-Attachments-Oct-2024)\n - [API & Integrations - CrowdStrike Incydr Flow Integration - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34371480239891-API-Integrations-CrowdStrike-Incydr-Flow-Integration-Oct-2024)\n - [API & Integrations - Mailock Integration - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34294880417811-API-Integrations-Mailock-Integration-Oct-2024)\n - [API & Integrations - Alpha Mountain - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34301130576915-API-Integrations-Alpha-Mountain-Oct-2024)\n - [API & Integrations - Splunk - Upgraded Python Library - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34294566122259-API-Integrations-Splunk-Upgraded-Python-Library-Oct-2024)\n - [API & Integrations - Cribl - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34294536310291-API-Integrations-Cribl-Oct-2024)\n - [API & Integrations - CrowdStrike Foundry Integration - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34294444329235-API-Integrations-CrowdStrike-Foundry-Integration-Oct-2024)\n - [API & Integrations - LevelBlue USM Anywhere - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34294533339667-API-Integrations-LevelBlue-USM-Anywhere-Oct-2024)\n - [Analysis & Response - Detection Details Enhancement - Jun 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/42040831027091-Analysis-Response-Detection-Details-Enhancement-Jun-2025)\n - [Mimecast Customer Care - Mimecast Community and Knowledge - Feb 2025](https://mimecastsupport.zendesk.com/hc/en-us/articles/38223061622803-Mimecast-Customer-Care-Mimecast-Community-and-Knowledge-Feb-2025)\n - [Email Security Cloud Gateway - Advanced Business Email Compromise Protection - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000811334419-Email-Security-Cloud-Gateway-Advanced-Business-Email-Compromise-Protection-Oct-2024)\n - [Email Security Cloud Integrated - Advanced Business Email Compromise Protection - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000435491219-Email-Security-Cloud-Integrated-Advanced-Business-Email-Compromise-Protection-Oct-2024)\n - [Email Security Cloud Integration - Enhanced Detection Insights - Service Update - Oct 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34486226171539-Email-Security-Cloud-Integration-Enhanced-Detection-Insights-Service-Update-Oct-2024)\n - [URL Protect - QR Codes Update & Image Analysis - Sep 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000394302995-URL-Protect-QR-Codes-Update-Image-Analysis-Sep-2024)\n - [API & Integrations - New API Endpoints - Sep 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024)\n - [Reporting MEIR & Outlook End-User Reporting - Sep 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000395409043-Reporting-MEIR-Outlook-End-User-Reporting-Sep-2024)\n - [Case Review - Mailbox Holds Listing - Sep 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000448279059-Case-Review-Mailbox-Holds-Listing-Sep-2024)\n - [Mimecast Synchronization Engine - Release 4.5.0.499 - Sep 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000463735315-Mimecast-Synchronization-Engine-Release-4-5-0-499-Sep-2024)\n - [CyberGraph 2.0 - Upgrade - Aug 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000392999059-CyberGraph-2-0-Upgrade-Aug-2024)\n - [Email Security Cloud Integrated - Enhanced Detections Page & Bulk Detection Management - Aug 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000419306515-Email-Security-Cloud-Integrated-Enhanced-Detections-Page-Bulk-Detection-Management-Aug-2024)\n - [Email Security Cloud Integrated - Threat Scan - Aug 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000493863571-Email-Security-Cloud-Integrated-Threat-Scan-Aug-2024)\n - [Attachment Protect - Decryption Portal - Aug 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000503243539-Attachment-Protect-Decryption-Portal-Aug-2024)\n - [Email Security Cloud Integrated - Customize Notification Recipients - Aug 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000494288275-Email-Security-Cloud-Integrated-Customize-Notification-Recipients-Aug-2024)\n - [Email Security Cloud Integrated - Sync & Recover - Jul 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000520299795-Email-Security-Cloud-Integrated-Sync-Recover-Jul-2024)\n - [Spam / Phishing - Auto Allow Spam Scanning Enhancements - Jul 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000538331027-Spam-Phishing-Auto-Allow-Spam-Scanning-Enhancements-Jul-2024)\n - [Analysis and Response - New APIs - Jul 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000580727187-Analysis-and-Response-New-APIs-Jul-2024)\n - [Email Security Cloud Integrated - Allow/Block Rule - Jul 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000538535827-Email-Security-Cloud-Integrated-Allow-Block-Rule-Jul-2024)\n - [Reporting - Outlook End-User Reporting - Jul 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000543146387-Reporting-Outlook-End-User-Reporting-Jul-2024)\n - [Email Security Cloud Integrated - Connector Configuration Improvements - Jun 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000556442003-Email-Security-Cloud-Integrated-Connector-Configuration-Improvements-Jun-2024)\n - [Threat Dashboard - Removal - Jun 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420397843-Threat-Dashboard-Removal-Jun-2024)\n - [Brand Exploit Protect - Key Rotation - Jun 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000393899539-Brand-Exploit-Protect-Key-Rotation-Jun-2024)\n - [Mimecast for Outlook - Incompatibility with New Outlook - Jun 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000402700563-Mimecast-for-Outlook-Incompatibility-with-New-Outlook-Jun-2024)\n - [Mimecast Synchronization Engine - Release 4.5.0.498 - Jun 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420289555-Mimecast-Synchronization-Engine-Release-4-5-0-498-Jun-2024)\n - [Email Security Cloud Integrated - Subject URL Rewriting - Jun 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000402302739-Email-Security-Cloud-Integrated-Subject-URL-Rewriting-Jun-2024)\n - [Attachment Protect - Enhancements for Cryptographic Message Syntax Jun 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000561061395-Attachment-Protect-Enhancements-for-Cryptographic-Message-Syntax-Jun-2024)\n - [CyberGraph 1.0 - Legacy On-Premises MTA End of Life - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/37315193865619-CyberGraph-1-0-Legacy-On-Premises-MTA-End-of-Life-May-2024)\n - [Directory Synchronization - Microsoft Azure Directory Synchronization Connectors - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000394614419-Directory-Synchronization-Microsoft-Azure-Directory-Synchronization-Connectors-May-2024)\n - [Awareness Training - Weekly Reminders - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420763155-Awareness-Training-Weekly-Reminders-May-2024)\n - [Email Security Cloud Integrated - Troubleshooting Installation - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000613678739-Email-Security-Cloud-Integrated-Troubleshooting-Installation-May-2024)\n - [Analysis and Response - Launch - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000614756755-Analysis-and-Response-Launch-May-2024)\n - [Awareness Training - Module Limit End of Life - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000597304211-Awareness-Training-Module-Limit-End-of-Life-May-2024)\n - [CyberGraph 2.0 - Single Sign-On (SSO) - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000615051411-CyberGraph-2-0-Single-Sign-On-SSO-May-2024)\n - [Mimecast Administration Console - App Switcher Retirement - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000529773331-Mimecast-Administration-Console-App-Switcher-Retirement-May-2024)\n - [API & Integrations - API 2.0 Portal Usability Enhancements - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000614980755-API-Integrations-API-2-0-Portal-Usability-Enhancements-May-2024)\n - [Email Security Cloud Integrated - Sync & Recover - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000615471379-Email-Security-Cloud-Integrated-Sync-Recover-May-2024)\n - [Message Routing - Security Enhancements for TNEF Encapsulated Items - May 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000408563475-Message-Routing-Security-Enhancements-for-TNEF-Encapsulated-Items-May-2024)\n - [Email Security Cloud Integrated - Threat Scan - April 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000394883219-Email-Security-Cloud-Integrated-Threat-Scan-April-2024)\n - [Email Security Cloud Integrated - Home Page Enhancements - Apr 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000447883667-Email-Security-Cloud-Integrated-Home-Page-Enhancements-Apr-2024)\n - [Email Security Cloud Integrated - User Synchronization Enhancements - Apr 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000422075539-Email-Security-Cloud-Integrated-User-Synchronization-Enhancements-Apr-2024)\n - [API & Integrations - Restful API Endpoints - Apr 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000435558547-API-Integrations-Restful-API-Endpoints-Apr-2024)\n - [API & Integrations - New API Endpoints - Apr 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000363282963-API-Integrations-New-API-Endpoints-Apr-2024)\n - [Notification Sets - Custom Notifications - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000309352339-Notification-Sets-Custom-Notifications-Mar-2024)\n - [Attachment Protect - Attachment Protect Decryption Portal - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000320773651-Attachment-Protect-Attachment-Protect-Decryption-Portal-Mar-2024)\n - [Policies - Custom Header Feature - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000309269651-Policies-Custom-Header-Feature-Mar-2024)\n - [Awareness Training - Navigation Changes - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000337765907-Awareness-Training-Navigation-Changes-Mar-2024)\n - [Email Security Cloud Integrated - QR Code Scanning - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000363028499-Email-Security-Cloud-Integrated-QR-Code-Scanning-Mar-2024)\n - [Mimecast Customer Care - Support Phone Service Improvements - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000323041299-Mimecast-Customer-Care-Support-Phone-Service-Improvements-Mar-2024)\n - [Email Security Cloud Integrated - Policy Detection Engine Settings - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000450339859-Email-Security-Cloud-Integrated-Policy-Detection-Engine-Settings-Mar-2024)\n - [Email Security Cloud Integrated - Trusted ARC Sealer - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000321250579-Email-Security-Cloud-Integrated-Trusted-ARC-Sealer-Mar-2024)\n - [Email Security Cloud Integrated - Microsoft SharePoint & OneDrive - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000322422547-Email-Security-Cloud-Integrated-Microsoft-SharePoint-OneDrive-Mar-2024)\n - [Mimecast Email Incident Response - Remediation Reporting Change - Mar 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34003067854739-Mimecast-Email-Incident-Response-Remediation-Reporting-Change-Mar-2024)\n - [Email Security Cloud Integrated - In-App Chat Support Pilot - Feb 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000408508307-Email-Security-Cloud-Integrated-In-App-Chat-Support-Pilot-Feb-2024)\n - [DMARC Analyzer - Application Dashboard Improvements - Feb 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000322690323-DMARC-Analyzer-Application-Dashboard-Improvements-Feb-2024)\n - [Roles - Protected Content Administrator Elevations - Feb 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000339517459-Roles-Protected-Content-Administrator-Elevations-Feb-2024)\n - [Sync & Recover - Email Download - Feb 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000349343379-Sync-Recover-Email-Download-Feb-2024)\n - [Awareness Training - Efficacy Report Release Two - Feb 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000466652435-Awareness-Training-Efficacy-Report-Release-Two-Feb-2024)\n - [Targeted Threat Protection - Domain Update - Feb 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000364820371-Targeted-Threat-Protection-Domain-Update-Feb-2024)\n - [DMARC Analyzer - Email Security Cloud Integrated - Feb 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000455276179-DMARC-Analyzer-Email-Security-Cloud-Integrated-Feb-2024)\n - [DMARC Analyzer - Google & Yahoo Authentication Changes - Feb 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34003059933075-DMARC-Analyzer-Google-Yahoo-Authentication-Changes-Feb-2024)\n - [Connect Application - EOL Notice - Jan 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000351575827-Connect-Application-EOL-Notice-Jan-2024)\n - [Targeted Threat Protection - QR Code Scanning - Jan 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000340391443-Targeted-Threat-Protection-QR-Code-Scanning-Jan-2024)\n - [Email Security Cloud Integrated - Sync & Recover - Jan 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000354102035-Email-Security-Cloud-Integrated-Sync-Recover-Jan-2024)\n - [Email Security Cloud Gateway - SMS Services New Number for South Africa - Jan 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34003074398483-Email-Security-Cloud-Gateway-SMS-Services-New-Number-for-South-Africa-Jan-2024)\n - [CyberGraph 2.0 - New Microsoft Outlook Client - Jan 2024](https://mimecastsupport.zendesk.com/hc/en-us/articles/34003061551507-CyberGraph-2-0-New-Microsoft-Outlook-Client-Jan-2024)\n - [Targeted Threat Protection - HTML Attachment Deep Scanning - Dec 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000325292307-Targeted-Threat-Protection-HTML-Attachment-Deep-Scanning-Dec-2023)\n - [Email Security Cloud Integrated - Enhanced Detections Search - Dec 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000367927827-Email-Security-Cloud-Integrated-Enhanced-Detections-Search-Dec-2023)\n - [Awareness Training - Efficacy Report Release One - Dec 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000342751123-Awareness-Training-Efficacy-Report-Release-One-Dec-2023)\n - [Attachment Protect - Attachment Protect Definitions - Dec 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000455934611-Attachment-Protect-Attachment-Protect-Definitions-Dec-2023)\n - [Mimecast Administration Console - Menu Enhancements - Nov 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000456107539-Mimecast-Administration-Console-Menu-Enhancements-Nov-2023)\n - [Email Security Cloud Integrated - Microsoft Native Reporting - Nov 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000456239379-Email-Security-Cloud-Integrated-Microsoft-Native-Reporting-Nov-2023)\n - [Policies - Wildcards Update - Nov 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000442932243-Policies-Wildcards-Update-Nov-2023)\n - [Mimecast Customer Care - Support Case Routing - Oct 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000352877075-Mimecast-Customer-Care-Support-Case-Routing-Oct-2023)\n - [Email Security Cloud Integrated - Allow/Block List Improvements - Oct 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000381794579-Email-Security-Cloud-Integrated-Allow-Block-List-Improvements-Oct-2023)\n - [Awareness Training - Compliance & Risk Center Summary Boards - Oct 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000355857939-Awareness-Training-Compliance-Risk-Center-Summary-Boards-Oct-2023)\n - [Awareness Training - Enhancements to Reporting - Oct 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000353020307-Awareness-Training-Enhancements-to-Reporting-Oct-2023)\n - [Mimecast Synchronization Engine - Release 4.5.0.491 - Oct 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000368397587-Mimecast-Synchronization-Engine-Release-4-5-0-491-Oct-2023)\n - [DMARC Analyzer - DMARC Standard / Credit Card EOL - Sep 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000308888083-DMARC-Analyzer-DMARC-Standard-Credit-Card-EOL-Sep-2023)\n - [API & Integrations - Manage API 2.0 Credentials - Sep 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000443713427-API-Integrations-Manage-API-2-0-Credentials-Sep-2023)\n - [Email Security Cloud Integrated - Re-installation - Sep 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000444189587-Email-Security-Cloud-Integrated-Re-installation-Sep-2023)\n - [Directory Synchronization Azure Directory Synchronization Integrations Sep 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000471634835-Directory-Synchronization-Azure-Directory-Synchronization-Integrations-Sep-2023)\n - [Email Security Cloud Integrated - Detection Engine Enhancements - Aug 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000428137491-Email-Security-Cloud-Integrated-Detection-Engine-Enhancements-Aug-2023)\n - [API & Integrations - ServiceNow v1.3.2 Integration - Aug 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000384440723-API-Integrations-ServiceNow-v1-3-2-Integration-Aug-2023)\n - [API & Integrations - Profile Group Backup, Restore & Export API Endpoints - Aug 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000395920019-API-Integrations-Profile-Group-Backup-Restore-Export-API-Endpoints-Aug-2023)\n - [Email Security Cloud Integrated - More Mimecast Products - Aug 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000396146707-Email-Security-Cloud-Integrated-More-Mimecast-Products-Aug-2023)\n - [Email Security Cloud Integrated - Threats, Security Events & Data API Endpoints - Aug 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000396263955-Email-Security-Cloud-Integrated-Threats-Security-Events-Data-API-Endpoints-Aug-2023)\n - [Mimecast Administration Console - User Interface Enhancements - Jul 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000414043027-Mimecast-Administration-Console-User-Interface-Enhancements-Jul-2023)\n - [API & Integrations - API Endpoints for Large File Payload - July 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000359474451-API-Integrations-API-Endpoints-for-Large-File-Payload-July-2023)\n - [API & Integrations - Threat and Security Statistics APIs for Mimecast API 2.0 - Jul 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000414274579-API-Integrations-Threat-and-Security-Statistics-APIs-for-Mimecast-API-2-0-Jul-2023)\n - [API & Integrations - SIEM API Endpoints - Jul 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000373976083-API-Integrations-SIEM-API-Endpoints-Jul-2023)\n - [Mimecast Administration Console - Navigation Update - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000396492179-Mimecast-Administration-Console-Navigation-Update-Jun-2023)\n - [Mimecast Administration Console - Navigation Enhancements - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000444514835-Mimecast-Administration-Console-Navigation-Enhancements-Jun-2023)\n - [Policies - Support for MTA-STS - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000414937491-Policies-Support-for-MTA-STS-Jun-2023)\n - [Attachment Protect - Sandbox Enhancement - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000428234643-Attachment-Protect-Sandbox-Enhancement-Jun-2023)\n - [Mimecast Synchronization Engine - Release 4.5.0.489 - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000444600467-Mimecast-Synchronization-Engine-Release-4-5-0-489-Jun-2023)\n - [API & Integrations - Configuration, Backup & Export API - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000374825235-API-Integrations-Configuration-Backup-Export-API-Jun-2023)\n - [Connectors - GCC HIGH Cloud Service Provider - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000375015315-Connectors-GCC-HIGH-Cloud-Service-Provider-Jun-2023)\n - [Mimecast Email Incident Response - End User Feedback Updates - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000397348115-Mimecast-Email-Incident-Response-End-User-Feedback-Updates-Jun-2023)\n - [Email Security Cloud Integrated - Expanded Protection - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000386317075-Email-Security-Cloud-Integrated-Expanded-Protection-Jun-2023)\n - [Email Security Cloud Integrated - Mailflow Repair Installation - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000389008275-Email-Security-Cloud-Integrated-Mailflow-Repair-Installation-Jun-2023)\n - [API & Integrations - Mimecast API 2.0 - Jun 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000397477011-API-Integrations-Mimecast-API-2-0-Jun-2023)\n - [URL Protect - URL Reporting Enhancement - May 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000397669395-URL-Protect-URL-Reporting-Enhancement-May-2023)\n - [Policies - Permitted Senders - May 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000416256659-Policies-Permitted-Senders-May-2023)\n - [Mimecast Synchronization Engine - Release 4.5.0.463 - Apr 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000595615507-Mimecast-Synchronization-Engine-Release-4-5-0-463-Apr-2023)\n - [API & Integrations - Add API Applications Button Removal - Mar 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000639107603-API-Integrations-Add-API-Applications-Button-Removal-Mar-2023)\n - [Polcies - Auto Allow Spam Scanning - Mar 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000630679059-Polcies-Auto-Allow-Spam-Scanning-Mar-2023)\n - [Mimecast Synchronization Engine - Release 4.5.0.462 - Feb 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000658424211-Mimecast-Synchronization-Engine-Release-4-5-0-462-Feb-2023)\n - [Directory Synchronization - Security Enhancements for Azure AD Sync Integrations - Feb 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000618060307-Directory-Synchronization-Security-Enhancements-for-Azure-AD-Sync-Integrations-Feb-2023)\n - [Directory Synchronization - On-Premises Directory Integration Connectivity - Feb 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000664944531-Directory-Synchronization-On-Premises-Directory-Integration-Connectivity-Feb-2023)\n - [Directory Synchronization - Using a Connector - Jan 2023](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000650088979-Directory-Synchronization-Using-a-Connector-Jan-2023)\n - [DMARC Analyzer - Reporting - Nov 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000320242707-DMARC-Analyzer-Reporting-Nov-2022)\n - [Authentication - SMTP Authentication Restrictions - Oct 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000605257491-Authentication-SMTP-Authentication-Restrictions-Oct-2022)\n - [Journaling - Non-Secure POP3 Connections - Oct 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000665405459-Journaling-Non-Secure-POP3-Connections-Oct-2022)\n - [Directory Synchronization - Console Refresh - Oct 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000619896083-Directory-Synchronization-Console-Refresh-Oct-2022)\n - [Attachment Protect - Sandbox Timeout - Oct 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000697737491-Attachment-Protect-Sandbox-Timeout-Oct-2022)\n - [Contact Export Wizard - EOL - Jul 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000637480595-Contact-Export-Wizard-EOL-Jul-2022)\n - [URL Protection - Machine Learning Detection - Jul 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000415807507-URL-Protection-Machine-Learning-Detection-Jul-2022)\n - [API & Integrations - Legacy TLS End Of Life - Jun 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000578790291-API-Integrations-Legacy-TLS-End-Of-Life-Jun-2022)\n - [API & Integrations - Migration To MS Graph - Jun 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000659169171-API-Integrations-Migration-To-MS-Graph-Jun-2022)\n - [Mimecast for Outlook - v7.10 R1 - Jun 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420615315-Mimecast-for-Outlook-v7-10-R1-Jun-2022)\n - [Authentication - Domain Authentication for Microsoft Exchange Online EOL - May 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000840753555-Authentication-Domain-Authentication-for-Microsoft-Exchange-Online-EOL-May-2022)\n - [Mimecast Mobile - Improvements - Apr 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000837566739-Mimecast-Mobile-Improvements-Apr-2022)\n - [Message Tracking - Time Zone - Apr 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000798049427-Message-Tracking-Time-Zone-Apr-2022)\n - [Mimecast Mobile - Improvements - Mar 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000810085651-Mimecast-Mobile-Improvements-Mar-2022)\n - [DMARC Analyzer - v2.40.0 Release Notes - Mar 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000797314323-DMARC-Analyzer-v2-40-0-Release-Notes-Mar-2022)\n - [Mimecast Administration Console - Alias Accounts - Feb 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000578001171-Mimecast-Administration-Console-Alias-Accounts-Feb-2022)\n - [API & Integrations - Mimecast For LogRhythm Integration Update - Feb 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000838844307-API-Integrations-Mimecast-For-LogRhythm-Integration-Update-Feb-2022)\n - [Supervision - Reporting - Jan 2022](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000840803987-Supervision-Reporting-Jan-2022)\n - [DMARC Analyzer - v2.39.0 Release Notes - Dec 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000810462611-DMARC-Analyzer-v2-39-0-Release-Notes-Dec-2021)\n - [Brand Exploit Protect - Version Update - Aug 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000811386259-Brand-Exploit-Protect-Version-Update-Aug-2021)\n - [DMARC Analyzer - v2.38.0 Release Notes - Aug 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000665516179-DMARC-Analyzer-v2-38-0-Release-Notes-Aug-2021)\n - [Policies - Address Alteration Policies - Aug 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000826372883-Policies-Address-Alteration-Policies-Aug-2021)\n - [Mimecast Essentials For Outlook - Held Messages - Jul 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000840937107-Mimecast-Essentials-For-Outlook-Held-Messages-Jul-2021)\n - [DMARC Analyzer - v2.37.0 - Jul 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000837870355-DMARC-Analyzer-v2-37-0-Jul-2021)\n - [Connectors - Server Connections - Jun 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000689179155-Connectors-Server-Connections-Jun-2021)\n - [DMARC Analyzer - Release Notes - Apr 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000624166163-DMARC-Analyzer-Release-Notes-Apr-2021)\n - [Awareness Training - Season 5 - Apr 2021](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000841723155-Awareness-Training-Season-5-Apr-2021)\n - [API & Integrations - ServiceNow Integration - Jul 2020](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000655966611-API-Integrations-ServiceNow-Integration-Jul-2020)\n - [Awareness Training - End User Naming and German Language Updates - May 2020](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000837448979-Awareness-Training-End-User-Naming-and-German-Language-Updates-May-2020)\n - [Impersonation Protect - Display Names - Mar 2020](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000392488467-Impersonation-Protect-Display-Names-Mar-2020)\n - [Connectors - Microsoft LDAP Hardening - Jan 2020](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000805343123-Connectors-Microsoft-LDAP-Hardening-Jan-2020)\n - [Email Security Cloud Gateway - Administration Console 4.1.2 - Nov 2019](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000723824531-Email-Security-Cloud-Gateway-Administration-Console-4-1-2-Nov-2019)\n - [Mimecast Administration Console - version 4.1.1 - Nov 2019](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000765554195-Mimecast-Administration-Console-version-4-1-1-Nov-2019)\n\n# Service Update\n\n| | |\n| --- | --- |\n| **Availability** | September 10th, 2024 |\n| **Product(s)** | Email Security Cloud Gateway (CG) |\n| **Who's affected** | Email Security Cloud Gateway (CG), Administrators |\n\n## Overview\n\nMimecast is pleased to announce the general availability of _**Secure Email Gateway Restful API Endpoints**_ that allow users to configure and manage _**User and Group Management**_, _**Connectors**_, _**Policy Management**_, _**Email Security Cloud Gateway**_, and _**Domain Management**_ using Mimecast APIs.\n\nThese endpoints can be used to create, manage, and verify the below capabilities:\n\n- Directory integrations such as creating connectors, testing connectivity and initiating directory sync.\n- Grey listing policies.\n- Delivery Route policies.\n- DNS Outbound policies.\n- Anti-spoofing and Anti-spoofing bypass policies.\n- Get Email Statistics.\n- Journaling Service.\n- User Group Management, such as managing group members.\n- Inbound MX Record.\n\nAdditionally, these endpoints can also be used for onboarding to _**Mimecast Cloud Gateway**_ services. Please refer to following tutorial for guidance on using these endpoints for onboarding purposes: [Secure Email Gateway - Onboarding with REST APIs](https://developer.services.mimecast.com/secure-email-gateway \"https://developer.services.mimecast.com/secure-email-gateway\").\n\n## What's changing\n\nThe following _**Restful API Endpoints**_ will be made available on _**API Gateway**_:\n\n### Directory Integration\n\n- Get all directory integrations.\n- Create directory integration \\[Active Directory\\].\n- Create directory integration \\[M365\\].\n- Create directory integration \\[Google\\].\n- Get directory integration \\[Active Directory\\].\n- Get directory integration \\[M365\\].\n- Get directory integration \\[Google\\].\n- Update directory integration \\[Active Directory\\].\n- Update directory integration \\[M365\\].\n- Update directory integration \\[Google\\].\n- Delete directory integration \\[Active Directory\\].\n- Delete directory integration \\[M365\\].\n- Delete directory integration \\[Google\\].\n- Test-connectivity directory connection \\[Active Directory\\].\n- Test-egress-connectivity directory connection \\[Active Directory\\].\n- Test-authentication directory connection \\[Active Directory\\].\n- Test-validation directory connection \\[Active Directory\\].\n- Test-certificates directory connection \\[Active Directory\\].\n- Test-email directory connection \\[Active Directory\\].\n- Test-connectivity directory connection \\[M365\\].\n- Test-authentication directory connection \\[M365\\].\n- Test-authorisation directory connection \\[M365\\].\n- Test-connector directory connection \\[M365\\].\n- Test-email directory connection \\[M365\\].\n- Test-connectivity directory connection \\[Google\\].\n- Test-authentication directory connection \\[Google\\].\n- Test-authorisation directory connection \\[Google\\].\n- Test-email directory connection \\[Google\\].\n- Request directory sync.\n\n### Connectors\n\n- Create Directory Connector \\[M365\\].\n- Update Directory Connector \\[M365\\].\n- Delete Directory Connector \\[M365\\].\n- Get Directory Connector \\[M365\\].\n\n### Policy Management\n\n- Get all greylisting policies.\n- Get greylisting policy.\n- Create greylisting policy.\n- Update greylisting policy.\n- Delete greylisting policy.\n- Get all delivery route definitions.\n- Get delivery route definition.\n- Create delivery route definition.\n- Update delivery route definition.\n- Delete delivery route definition.\n- Get all delivery route policies.\n- Get delivery route policy.\n- Create delivery route policy.\n- Update delivery route policy.\n- Delete delivery route policy.\n- Verify delivery route (action).\n- Get all DNS Authentication - Outbound definitions.\n- Get DNS Authentication - Outbound definition.\n- Create DNS Authentication - Outbound definition.\n- Update DNS Authentication - Outbound definition.\n- Delete DNS Authentication - Outbound definition.\n- Get all DNS Authentication - Outbound policies.\n- Get DNS Authentication - Outbound policy.\n- Create DNS Authentication - Outbound policy.\n- Update DNS Authentication - Outbound policy.\n- Delete DNS Authentication - Outbound policy.\n- Get all anti-spoofing policies.\n- Get anti-spoofing policy.\n- Create anti-spoofing policy.\n- Update anti-spoofing policy.\n- Delete anti-spoofing policy.\n- Get all anti-spoofing bypass policies.\n- Get anti-spoofing bypass policy.\n- Create anti-spoofing bypass policy.\n- Update anti-spoofing bypass policy.\n- Delete anti-spoofing bypass policy.\n\n### Email Security Cloud Gateway\n\n- Get email statistics.\n- Create Journaling Service.\n- Get all Journaling Services.\n- Get Journaling Service.\n- Update Journaling Service.\n- Delete Journaling Service.\n\n### User and Group Management\n\n- Find groups.\n- Get group.\n- Get group members.\n- Add group members.\n- Remove group members.\n\n### Domain Management\n\n- Verify inbound MX (action).\n\n## Recommended actions\n\nFamiliarize yourself with:\n\n- [Mimecast API capabilities](https://developer.services.mimecast.com/apis \"https://developer.services.mimecast.com/apis\")\n- [Mimecast Alliance Partners](https://integrations.mimecast.com/tech-partners/?_gl=1*rllq74*_ga*MTM5NTc0NDcxMy4xNzA4MDY4MzEx*_ga_2RRJFGC554*MTcxMDQxNzczMC45Ni4xLjE3MTA0MTg3NDguNTkuMC4w)\n\n## See Also...\n\n- [API 2.0 Overview](https://developer.services.mimecast.com/api-overview \"https://developer.services.mimecast.com/api-overview\")\n- [API 2.0 What's New](https://developer.services.mimecast.com/whats-new)\n\n#### Related to\n\n- [API & Integrations](https://mimecastsupport.zendesk.com/hc/en-us/search?content_tags=01JCK4N0EPJF6KTPT3MABR16T9&utf8=%E2%9C%93 \"Search results\")\n- [Email Security - MX](https://mimecastsupport.zendesk.com/hc/en-us/search?content_tags=01KHKDGGTJ2C9RGD5GZ7PXX7M0&utf8=%E2%9C%93 \"Search results\")\n\nPlease [sign in](https://mimecastsupport.zendesk.com/access?locale=en-us&brand_id=28063027612179&return_to=https%3A%2F%2Fmimecastsupport.zendesk.com%2Fhc%2Fen-us%2Farticles%2F34000420576659-API-Integrations-New-API-Endpoints-Sep-2024) to leave a comment.\n\n#### Table of contents\n\nOverview\n\n- [Overview](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01K06VEV6M8MCJ1S05BCQ92XSB)\n- [What's changing](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JPQ8DZS2WD7ZYP5K0JZE3XTB)\n- [Directory Integration](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JDW74XKPZ663N2S4R4GT29GQ)\n- [Connectors](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JDW74XKP41D59TP5B78FM57Q)\n- [Policy Management](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JDW74XKPVW0VSWKZZHV4R18T)\n- [Email Security Cloud Gateway](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JDW74XKPA8WXJ00N2VZRWF9P)\n- [User and Group Management](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JDW74XKP4HZ8JFX9Y5ZYGBQR)\n- [Domain Management](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JDW74XKPCTPZHSBZBY83HBXX)\n- [Recommended actions](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JDW74XKP9X4VHZZ3HVC602KY)\n- [See Also...](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#h_01JDW74XKP67F7V11XGSH7V39H)\n- [Related to](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024#related-to-10)\n\nReturn to top\n\n\ninstallation, branding, customization","metadata":{"og:description":"Service Update\n \n \n \n Availability\n \n September 10th, 2024\n \n \n \n Product(s)\n \n Email Security Cloud Gateway (CG)\n ...","ogUrl":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024","og:image":"https://mimecastsupport.zendesk.com/hc/theming_assets/01JDW0MS8H4Q6FHWQV5JKA1XPB","ogImage":"https://mimecastsupport.zendesk.com/hc/theming_assets/01JDW0MS8H4Q6FHWQV5JKA1XPB","title":"API & Integrations - New API Endpoints - Sep 2024 Mimecast","description":"Service Update Availability September 10th, 2024 ...","og:url":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024","language":"en-US","ogDescription":"Service Update\n \n \n \n Availability\n \n September 10th, 2024\n \n \n \n Product(s)\n \n Email Security Cloud Gateway (CG)\n ...","og:site_name":"Mimecast","ogTitle":"API & Integrations - New API Endpoints - Sep 2024","og:type":"website","og:title":"API & Integrations - New API Endpoints - Sep 2024","ogSiteName":"Mimecast","viewport":"width=device-width, initial-scale=1.0","favicon":"https://mimecastsupport.zendesk.com/hc/theming_assets/01JZ0NAR4QXDPSW25VSVN5Y2WC","scrapeId":"019d46c9-4df1-70ca-9269-b608cbea272e","sourceURL":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024","url":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000420576659-API-Integrations-New-API-Endpoints-Sep-2024","statusCode":200,"contentType":"text/html; charset=utf-8","proxyUsed":"basic","cacheState":"hit","cachedAt":"2026-03-30T08:49:20.782Z","creditsUsed":1}},{"url":"https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/","title":"Get Message Hold Summary List - API and Integrations | Mimecast","description":"Description. This API endpoint can be used to get counts of currenlty held messages for each hold reason. Hold reasons can reference policy ...","position":3,"markdown":"**In this guide:**\n\n- [Description](https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/#description)\n- [Pre-requisites](https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/#pre-requisites)\n- [URI](https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/#uri)\n- [Request Headers](https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/#request-headers)\n- [Request Body](https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/#request-body)\n- [Response](https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/#response)\n- [Sample Code](https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/#sample-code)\n\n#### Description\n\nThis API endpoint can be used to get counts of currenlty held messages for each hold reason. Hold reasons can reference policy actions or definition names.\n\n#### Pre-requisites\n\n- In order to successfully use this endpoint the logged in user must be a Mimecast administrator with at least the **Account \\| Monitoring \\| Held Summary \\| Read** permission.\n\n#### URI\n\nTo use this endpoint you send a POST request to:\n\n- /api/gateway/get-hold-summary-list\n\n#### Request Headers\n\nThe following request headers must be included in your request:\n\n| **Field** | **Description** |\n| --- | --- |\n| Authorization | Please see the [Authorization](https://integrations.mimecast.com/de/documentation/api-overview/authorization/) guide for more information on building the Authorization header. |\n| x-mc-req-id | A randomly generated GUID, for example,<br>```<br>8578FCFC-A305-4D9A-99CB-F4D5ECEFE297<br>``` |\n| x-mc-app-id | The Application ID provided with your Registered API Application. |\n| x-mc-date | The current date and time in the following format, for example,<br>```<br>Tue, 24 Nov 2015 12:50:11 UTC<br>``` |\n\n#### Request Body\n\n```\n\n{\n\n \"data\": []\n\n}\n```\n\n##### data\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n\n#### Response\n\n```\n\n{\n\n \"fail\": [],\n\n \"meta\": {\n\n \"status\": 200\n\n },\n\n \"data\": [\\\n\\\n {\\\n\\\n \"policyInfo\": \"String\",\\\n\\\n \"numberOfItems\": \"Number\"\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n##### meta object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| status | Number | The function level status of the request. |\n\n##### meta\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| status | Number | The function level status of the request. |\n\n##### data\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| policyInfo | String | The name of the policy or definition that held a message |\n| numberOfItems | Number | The number of messages currently held for this reason |\n\n#### Sample Code\n\nSample code is provided to demonstrate how to use the API and is not representative of a production application. To use the sample code; complete the required variables as described, populate the desired values in the request body, and execute in your favorite IDE.  Please see the [Global Base URL's](https://integrations.mimecast.com/de/documentation/api-overview/global-base-urls/) page to find the correct base URL to use for your account.\n\nHTTPPythonC#PowerShellJava\n\n```\n\nPOST {base_url}/api/gateway/get-hold-summary-list\n\nAuthorization: MC {accesskKey}:{Base64 encoded signed Data To Sign}\n\nx-mc-date: {dateTime}\n\nx-mc-req-id: {unique id}\n\nx-mc-app-id: {applicationId}\n\nContent-Type: application/json\n\nAccept: application/json\n\n\n\n{\n\n \"data\":[\\\n\\\n {\\\n\\\n \"data\":[]\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n```\n\nimport base64\n\nimport hashlib\n\nimport hmac\n\nimport uuid\n\nimport datetime\n\nimport requests\n\n\n\n# Setup required variables\n\nbase_url = \"https://xx-api.mimecast.com\"\n\nuri = \"/api/gateway/get-hold-summary-list\"\n\nurl = base_url + uri\n\naccess_key = \"YOUR ACCESS KEY\"\n\nsecret_key = \"YOUR SECRET KEY\"\n\napp_id = \"YOUR APPLICATION ID\"\n\napp_key = \"YOUR APPLICATION KEY\"\n\n\n\n# Generate request header values\n\nrequest_id = str(uuid.uuid4())\n\nhdr_date = datetime.datetime.utcnow().strftime(\"%a, %d %b %Y %H:%M:%S\") + \" UTC\"\n\n\n\n# DataToSign is used in hmac_sha1\n\ndataToSign = ':'.join([hdr_date, request_id, uri, app_key])\n\n\n\n# Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\nhmac_sha1 = hmac.new(base64.b64decode(secret_key), dataToSign.encode(), digestmod=hashlib.sha1).digest()\n\n\n\n# Use the HMAC SHA1 value to sign the hdrDate + \":\" requestId + \":\" + URI + \":\" + appkey\n\nsig = base64.b64encode(hmac_sha1).rstrip()\n\n\n\n# Create request headers\n\nheaders = {\n\n 'Authorization': 'MC ' + access_key + ':' + sig.decode(),\n\n 'x-mc-app-id': app_id,\n\n 'x-mc-date': hdr_date,\n\n 'x-mc-req-id': request_id,\n\n 'Content-Type': 'application/json'\n\n}\n\n\n\npayload = {\n\n 'data': []\n\n }\n\n\n\nr = requests.post(url=url, headers=headers, data=str(payload))\n\n\n\nprint(r.text)\n```\n\n```\n\nstatic void Main(string[] args)\n\n {\n\n //Setup required variables\n\n string baseUrl = \"https://xx-api.mimecast.com\";\n\n string uri = \"/api/gateway/get-hold-summary-list\";\n\n string accessKey = \"YOUR ACCESS KEY\";\n\n string secretKey = \"YOUR SECRET KEY\";\n\n string appId = \"YOUR APPLICATION ID\";\n\n string appKey = \"YOUR APPLICATION KEY\";\n\n\n\n //Generate request header values\n\n string hdrDate = System.DateTime.Now.ToUniversalTime().ToString(\"R\");\n\n string requestId = System.Guid.NewGuid().ToString();\n\n\n\n //Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\n System.Security.Cryptography.HMAC h = new System.Security.Cryptography.HMACSHA1(System.Convert.FromBase64String(secretKey));\n\n\n\n //Use the HMAC SHA1 value to sign the hdrDate + \":\" requestId + \":\" + URI + \":\" + appkey\n\n byte[] hash = h.ComputeHash(System.Text.Encoding.Default.GetBytes(hdrDate + \":\" + requestId + \":\" + uri + \":\" + appKey));\n\n\n\n //Build the signature to be included in the Authorization header in your request\n\n string signature = \"MC \" + accessKey + \":\" + System.Convert.ToBase64String(hash);\n\n\n\n //Build Request\n\n System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(baseUrl + uri);\n\n request.Method = \"POST\";\n\n request.ContentType = \"application/json\";\n\n\n\n //Add Headers\n\n request.Headers[System.Net.HttpRequestHeader.Authorization] = signature;\n\n request.Headers.Add(\"x-mc-date\", hdrDate);\n\n request.Headers.Add(\"x-mc-req-id\", requestId);\n\n request.Headers.Add(\"x-mc-app-id\", appId);\n\n\n\n //Add request body\n\n //Create and write data to stream\n\n string postData = @\"{\n\n \"\"data\"\": []\n\n }\";\n\n\n\n byte[] payload = System.Text.Encoding.UTF8.GetBytes(postData);\n\n\n\n System.IO.Stream stream = request.GetRequestStream();\n\n stream.Write(payload, 0, payload.Length);\n\n stream.Close();\n\n\n\n //Send Request\n\n System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse();\n\n\n\n //Output response to console\n\n System.IO.StreamReader reader = new System.IO.StreamReader(response.GetResponseStream());\n\n string responseBody = \"\";\n\n string temp = null;\n\n while ((temp = reader.ReadLine()) != null)\n\n {\n\n responseBody += temp;\n\n };\n\n System.Console.WriteLine(responseBody);\n\n System.Console.ReadLine();\n\n }\n```\n\n```\n\n#Setup required variables\n\n$baseUrl = \"https://xx-api.mimecast.com\"\n\n$uri = \"/api/gateway/get-hold-summary-list\"\n\n$url = $baseUrl + $uri\n\n$accessKey = \"YOUR ACCESS KEY\"\n\n$secretKey = \"YOUR SECRET KEY\"\n\n$appId = \"YOUR APPLICATION ID\"\n\n$appKey = \"YOUR APPLICATION KEY\"\n\n\n\n#Generate request header values\n\n$hdrDate = (Get-Date).ToUniversalTime().ToString(\"ddd, dd MMM yyyy HH:mm:ss UTC\")\n\n$requestId = [guid]::NewGuid().guid\n\n\n\n#Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\n$sha = New-Object System.Security.Cryptography.HMACSHA1\n\n$sha.key = [Convert]::FromBase64String($secretKey)\n\n$sig = $sha.ComputeHash([Text.Encoding]::UTF8.GetBytes($hdrDate + \":\" + $requestId + \":\" + $uri + \":\" + $appKey))\n\n$sig = [Convert]::ToBase64String($sig)\n\n\n\n#Create Headers\n\n$headers = @{\"Authorization\" = \"MC \" + $accessKey + \":\" + $sig;\n\n \"x-mc-date\" = $hdrDate;\n\n \"x-mc-app-id\" = $appId;\n\n \"x-mc-req-id\" = $requestId;\n\n \"Content-Type\" = \"application/json\"}\n\n\n\n#Create post body\n\n$postBody = \"{\n\n \"\"data\"\": []\n\n }\"\n\n\n\n#Send Request\n\n$response = Invoke-RestMethod -Method Post -Headers $headers -Body $postBody -Uri $url\n\n\n\n#Print the response\n\n$response\n```\n\n```\n\npublic static void main(String[] args) throws java.io.IOException, java.security.NoSuchAlgorithmException, java.security.InvalidKeyException {\n\n\n\n //set up variables for request\n\n String baseUrl = \"https://xx-api.mimecast.com\";\n\n String uri = \"/api/gateway/get-hold-summary-list\";\n\n String url = \"https://\" + baseUrl + uri;\n\n String accessKey = \"YOUR ACCESS KEY\";\n\n String secretKey = \"YOUR SECRET KEY\";\n\n String appId = \"YOUR APPLICATION ID\";\n\n String appKey = \"YOUR APPLICATION KEY\";\n\n\n\n //create URL object\n\n java.net.URL obj = new java.net.URL(url);\n\n\n\n // set guid for x-mc-req-id header\n\n String guid = java.util.UUID.randomUUID().toString();\n\n\n\n // set date for x-mc-date header\n\n java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(\"EEE, d MMM yyyy HH:mm:ss z\");\n\n sdf.setTimeZone(java.util.TimeZone.getTimeZone(\"UTC\"));\n\n String date = sdf.format(new java.util.Date());\n\n\n\n //create signature for the Authorization header\n\n String dataToSign = date + \":\" + guid + \":\" + uri + \":\" + appKey;\n\n String hmacSHA1 = \"HmacSHA1\";\n\n javax.crypto.spec.SecretKeySpec signingKey = new javax.crypto.spec.SecretKeySpec(org.apache.commons.codec.binary.Base64.decodeBase64(secretKey.getBytes()), hmacSHA1);\n\n javax.crypto.Mac mac = javax.crypto.Mac.getInstance(hmacSHA1);\n\n mac.init(signingKey);\n\n String sig = new String(org.apache.commons.codec.binary.Base64.encodeBase64(mac.doFinal(dataToSign.getBytes())));\n\n\n\n // create request object\n\n javax.net.ssl.HttpsURLConnection con = (javax.net.ssl.HttpsURLConnection) obj.openConnection();\n\n\n\n //set request type to POST\n\n con.setRequestMethod(\"POST\");\n\n con.setDoOutput(true);\n\n\n\n //add reuqest headers\n\n con.setRequestProperty(\"Authorization\", \"MC \" + accessKey + \":\" + sig);\n\n con.setRequestProperty(\"x-mc-req-id\", guid);\n\n con.setRequestProperty(\"x-mc-app-id\", appId);\n\n con.setRequestProperty(\"x-mc-date\", date);\n\n con.setRequestProperty(\"Content-Type\", \"application/json\");\n\n con.setRequestProperty(\"Accept\", \"application/json\");\n\n\n\n //Add post body to the request\n\n String postBody = \"{\\n\" +\n\n \" \\\"data\\\": []\\n\" +\n\n \"}\";\n\n java.io.OutputStream os = con.getOutputStream();\n\n os.write(postBody.getBytes(\"UTF-8\"));\n\n os.close();\n\n\n\n //process response\n\n java.io.BufferedReader in = new java.io.BufferedReader(\n\n new java.io.InputStreamReader(con.getInputStream()));\n\n String inputLine;\n\n StringBuffer response = new StringBuffer();\n\n\n\n while ((inputLine = in.readLine()) != null) {\n\n response.append(inputLine);\n\n }\n\n in.close();\n\n\n\n //return result\n\n java.lang.System.out.println(response.toString());\n\n }\n```\n\n[Zurück zum Anfang](https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/#)","metadata":{"robots":"index, follow","og:site_name":"Mimecast","ogLocale":"de_DE","ogUrl":"https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/","VIcurrentDateTime":["639106058917231207>","639106058917231265"],"viewport":"width=device-width, initial-scale=1, shrink-to-fit=no","title":"Get Message Hold Summary List | Mimecast","og:title":"Get Message Hold Summary List","og:description":"Mimecast API Get Message Hold Summary List","description":"Mimecast API Get Message Hold Summary List","ogTitle":"Get Message Hold Summary List","ogDescription":"Mimecast API Get Message Hold Summary List","og:locale":"de_DE","author":"mimecast","theme-color":"#ffffff","og:url":"https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/","ogSiteName":"Mimecast","VirtualFolder":["\\","/"],"language":"de","favicon":"https://integrations.mimecast.com/sc-static/img/favicons/icons_m_192x192.png","scrapeId":"019d46c9-4df1-70ca-9269-b95fe8f2940a","sourceURL":"https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/","url":"https://integrations.mimecast.com/de/documentation/endpoint-reference/message-queues/get-hold-summary-list/","statusCode":200,"contentType":"text/html; charset=utf-8","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"83b025d4-3c68-4e7d-828c-79e7f9bc0c8f","creditsUsed":1}},{"url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/","title":"Release Message - API and Integrations | Mimecast","description":"This API endpoint can be used to release a currently held message based on the Find Held Messages API endpoint.","position":4,"markdown":"**In this guide:**\n\n- [Description](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/#description)\n- [Pre-requisites](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/#pre-requisites)\n- [URI](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/#uri)\n- [Request Headers](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/#request-headers)\n- [Request Body](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/#request-body)\n- [Response](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/#response)\n- [Sample Code](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/#sample-code)\n\n#### Description\n\nThis API endpoint can be used to release a currently held message based on the Find Held Messages API endpoint\n\n#### Pre-requisites\n\n- In order to successfully use this endpoint the logged in user must be a Mimecast administrator with at least the **Account \\| Monitoring \\| Held \\| Edit** permission.\n\n#### URI\n\nTo use this endpoint you send a POST request to:\n\n- /api/gateway/hold-release\n\n#### Request Headers\n\nThe following request headers must be included in your request:\n\n| **Field** | **Description** |\n| --- | --- |\n| Authorization | Please see the [Authorization](https://integrations.mimecast.com/documentation/api-overview/authorization/) guide for more information on building the Authorization header. |\n| x-mc-req-id | A randomly generated GUID, for example,<br>```<br>8578FCFC-A305-4D9A-99CB-F4D5ECEFE297<br>``` |\n| x-mc-app-id | The Application ID provided with your Registered API Application. |\n| x-mc-date | The current date and time in the following format, for example,<br>```<br>Tue, 24 Nov 2015 12:50:11 UTC<br>``` |\n\n#### Request Body\n\n```\n\n{\n\n \"data\": [\\\n\\\n {\\\n\\\n \"id\": \"String\"\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n##### data\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n| id | String | Required | The Mimecast secure id of a message, which can be found using the Find Held Messages API endpoint |\n\n#### Response\n\n```\n\n{\n\n \"fail\": [],\n\n \"meta\": {\n\n \"status\": 200\n\n },\n\n \"data\": [\\\n\\\n {\\\n\\\n \"release\": \"Boolean\",\\\n\\\n \"id\": \"String\"\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n##### meta object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| status | Number | The function level status of the request. |\n\n##### meta\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| status | Number | The function level status of the request. |\n\n##### data\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| release | Boolean | Returns true if the message was released |\n| id | String | The Mimecast secure id of the message hold |\n\n#### Sample Code\n\nSample code is provided to demonstrate how to use the API and is not representative of a production application. To use the sample code; complete the required variables as described, populate the desired values in the request body, and execute in your favorite IDE.  Please see the [Global Base URL's](https://integrations.mimecast.com/documentation/api-overview/global-base-urls/) page to find the correct base URL to use for your account.\n\nHTTPPythonC#PowerShellJava\n\n```\n\nPOST {base_url}/api/gateway/hold-release\n\nAuthorization: MC {accesskKey}:{Base64 encoded signed Data To Sign}\n\nx-mc-date: {dateTime}\n\nx-mc-req-id: {unique id}\n\nx-mc-app-id: {applicationId}\n\nContent-Type: application/json\n\nAccept: application/json\n\n\n\n{\n\n \"data\":[\\\n\\\n {\\\n\\\n \"id\": \"String\"\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n```\n\nimport base64\n\nimport hashlib\n\nimport hmac\n\nimport uuid\n\nimport datetime\n\nimport requests\n\n\n\n# Setup required variables\n\nbase_url = \"https://xx-api.mimecast.com\"\n\nuri = \"/api/gateway/hold-release\"\n\nurl = base_url + uri\n\naccess_key = \"YOUR ACCESS KEY\"\n\nsecret_key = \"YOUR SECRET KEY\"\n\napp_id = \"YOUR APPLICATION ID\"\n\napp_key = \"YOUR APPLICATION KEY\"\n\n\n\n# Generate request header values\n\nrequest_id = str(uuid.uuid4())\n\nhdr_date = datetime.datetime.utcnow().strftime(\"%a, %d %b %Y %H:%M:%S\") + \" UTC\"\n\n\n\n# DataToSign is used in hmac_sha1\n\ndataToSign = ':'.join([hdr_date, request_id, uri, app_key])\n\n\n\n# Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\nhmac_sha1 = hmac.new(base64.b64decode(secret_key), dataToSign.encode(), digestmod=hashlib.sha1).digest()\n\n\n\n# Use the HMAC SHA1 value to sign the hdrDate + \":\" requestId + \":\" + URI + \":\" + appkey\n\nsig = base64.b64encode(hmac_sha1).rstrip()\n\n\n\n# Create request headers\n\nheaders = {\n\n 'Authorization': 'MC ' + access_key + ':' + sig.decode(),\n\n 'x-mc-app-id': app_id,\n\n 'x-mc-date': hdr_date,\n\n 'x-mc-req-id': request_id,\n\n 'Content-Type': 'application/json'\n\n}\n\n\n\npayload = {\n\n 'data': [\\\n\\\n {\\\n\\\n \"id\": \"String\"\\\n\\\n }\\\n\\\n ]\n\n }\n\n\n\nr = requests.post(url=url, headers=headers, data=str(payload))\n\n\n\nprint(r.text)\n```\n\n```\n\nstatic void Main(string[] args)\n\n {\n\n //Setup required variables\n\n string baseUrl = \"https://xx-api.mimecast.com\";\n\n string uri = \"/api/gateway/hold-release\";\n\n string accessKey = \"YOUR ACCESS KEY\";\n\n string secretKey = \"YOUR SECRET KEY\";\n\n string appId = \"YOUR APPLICATION ID\";\n\n string appKey = \"YOUR APPLICATION KEY\";\n\n\n\n //Generate request header values\n\n string hdrDate = System.DateTime.Now.ToUniversalTime().ToString(\"R\");\n\n string requestId = System.Guid.NewGuid().ToString();\n\n\n\n //Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\n System.Security.Cryptography.HMAC h = new System.Security.Cryptography.HMACSHA1(System.Convert.FromBase64String(secretKey));\n\n\n\n //Use the HMAC SHA1 value to sign the hdrDate + \":\" requestId + \":\" + URI + \":\" + appkey\n\n byte[] hash = h.ComputeHash(System.Text.Encoding.Default.GetBytes(hdrDate + \":\" + requestId + \":\" + uri + \":\" + appKey));\n\n\n\n //Build the signature to be included in the Authorization header in your request\n\n string signature = \"MC \" + accessKey + \":\" + System.Convert.ToBase64String(hash);\n\n\n\n //Build Request\n\n System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(baseUrl + uri);\n\n request.Method = \"POST\";\n\n request.ContentType = \"application/json\";\n\n\n\n //Add Headers\n\n request.Headers[System.Net.HttpRequestHeader.Authorization] = signature;\n\n request.Headers.Add(\"x-mc-date\", hdrDate);\n\n request.Headers.Add(\"x-mc-req-id\", requestId);\n\n request.Headers.Add(\"x-mc-app-id\", appId);\n\n\n\n //Add request body\n\n //Create and write data to stream\n\n string postData = @\"{\n\n \"\"data\"\": [\\\n\\\n {\\\n\\\n \"\"id\"\": \"\"String\"\"\\\n\\\n }\\\n\\\n ]\n\n }\";\n\n\n\n byte[] payload = System.Text.Encoding.UTF8.GetBytes(postData);\n\n\n\n System.IO.Stream stream = request.GetRequestStream();\n\n stream.Write(payload, 0, payload.Length);\n\n stream.Close();\n\n\n\n //Send Request\n\n System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse();\n\n\n\n //Output response to console\n\n System.IO.StreamReader reader = new System.IO.StreamReader(response.GetResponseStream());\n\n string responseBody = \"\";\n\n string temp = null;\n\n while ((temp = reader.ReadLine()) != null)\n\n {\n\n responseBody += temp;\n\n };\n\n System.Console.WriteLine(responseBody);\n\n System.Console.ReadLine();\n\n }\n```\n\n```\n\n#Setup required variables\n\n$baseUrl = \"https://xx-api.mimecast.com\"\n\n$uri = \"/api/gateway/hold-release\"\n\n$url = $baseUrl + $uri\n\n$accessKey = \"YOUR ACCESS KEY\"\n\n$secretKey = \"YOUR SECRET KEY\"\n\n$appId = \"YOUR APPLICATION ID\"\n\n$appKey = \"YOUR APPLICATION KEY\"\n\n\n\n#Generate request header values\n\n$hdrDate = (Get-Date).ToUniversalTime().ToString(\"ddd, dd MMM yyyy HH:mm:ss UTC\")\n\n$requestId = [guid]::NewGuid().guid\n\n\n\n#Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\n$sha = New-Object System.Security.Cryptography.HMACSHA1\n\n$sha.key = [Convert]::FromBase64String($secretKey)\n\n$sig = $sha.ComputeHash([Text.Encoding]::UTF8.GetBytes($hdrDate + \":\" + $requestId + \":\" + $uri + \":\" + $appKey))\n\n$sig = [Convert]::ToBase64String($sig)\n\n\n\n#Create Headers\n\n$headers = @{\"Authorization\" = \"MC \" + $accessKey + \":\" + $sig;\n\n \"x-mc-date\" = $hdrDate;\n\n \"x-mc-app-id\" = $appId;\n\n \"x-mc-req-id\" = $requestId;\n\n \"Content-Type\" = \"application/json\"}\n\n\n\n#Create post body\n\n$postBody = \"{\n\n \"\"data\"\": [\\\n\\\n {\\\n\\\n \"\"id\"\": \"\"String\"\"\\\n\\\n }\\\n\\\n ]\n\n }\"\n\n\n\n#Send Request\n\n$response = Invoke-RestMethod -Method Post -Headers $headers -Body $postBody -Uri $url\n\n\n\n#Print the response\n\n$response\n```\n\n```\n\npublic static void main(String[] args) throws java.io.IOException, java.security.NoSuchAlgorithmException, java.security.InvalidKeyException {\n\n\n\n //set up variables for request\n\n String baseUrl = \"https://xx-api.mimecast.com\";\n\n String uri = \"/api/gateway/hold-release\";\n\n String url = \"https://\" + baseUrl + uri;\n\n String accessKey = \"YOUR ACCESS KEY\";\n\n String secretKey = \"YOUR SECRET KEY\";\n\n String appId = \"YOUR APPLICATION ID\";\n\n String appKey = \"YOUR APPLICATION KEY\";\n\n\n\n //create URL object\n\n java.net.URL obj = new java.net.URL(url);\n\n\n\n // set guid for x-mc-req-id header\n\n String guid = java.util.UUID.randomUUID().toString();\n\n\n\n // set date for x-mc-date header\n\n java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(\"EEE, d MMM yyyy HH:mm:ss z\");\n\n sdf.setTimeZone(java.util.TimeZone.getTimeZone(\"UTC\"));\n\n String date = sdf.format(new java.util.Date());\n\n\n\n //create signature for the Authorization header\n\n String dataToSign = date + \":\" + guid + \":\" + uri + \":\" + appKey;\n\n String hmacSHA1 = \"HmacSHA1\";\n\n javax.crypto.spec.SecretKeySpec signingKey = new javax.crypto.spec.SecretKeySpec(org.apache.commons.codec.binary.Base64.decodeBase64(secretKey.getBytes()), hmacSHA1);\n\n javax.crypto.Mac mac = javax.crypto.Mac.getInstance(hmacSHA1);\n\n mac.init(signingKey);\n\n String sig = new String(org.apache.commons.codec.binary.Base64.encodeBase64(mac.doFinal(dataToSign.getBytes())));\n\n\n\n // create request object\n\n javax.net.ssl.HttpsURLConnection con = (javax.net.ssl.HttpsURLConnection) obj.openConnection();\n\n\n\n //set request type to POST\n\n con.setRequestMethod(\"POST\");\n\n con.setDoOutput(true);\n\n\n\n //add reuqest headers\n\n con.setRequestProperty(\"Authorization\", \"MC \" + accessKey + \":\" + sig);\n\n con.setRequestProperty(\"x-mc-req-id\", guid);\n\n con.setRequestProperty(\"x-mc-app-id\", appId);\n\n con.setRequestProperty(\"x-mc-date\", date);\n\n con.setRequestProperty(\"Content-Type\", \"application/json\");\n\n con.setRequestProperty(\"Accept\", \"application/json\");\n\n\n\n //Add post body to the request\n\n String postBody = \"{\\n\" +\n\n \" \\\"data\\\": [\\n\" +\\\n\\\n \" {\\n\" +\\\n\\\n \" \\\"id\\\": \\\"String\\\" +\\\n\\\n \" }\\n\" +\\\n\\\n \" ]\\n\" +\n\n \"}\";\n\n java.io.OutputStream os = con.getOutputStream();\n\n os.write(postBody.getBytes(\"UTF-8\"));\n\n os.close();\n\n\n\n //process response\n\n java.io.BufferedReader in = new java.io.BufferedReader(\n\n new java.io.InputStreamReader(con.getInputStream()));\n\n String inputLine;\n\n StringBuffer response = new StringBuffer();\n\n\n\n while ((inputLine = in.readLine()) != null) {\n\n response.append(inputLine);\n\n }\n\n in.close();\n\n\n\n //return result\n\n java.lang.System.out.println(response.toString());\n\n }\n```\n\n[Back to Top](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/#)","metadata":{"twitter:card":"summary_large_image","ogUrl":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/","ogDescription":"Mimecast API Release Message","author":"mimecast","VIcurrentDateTime":["639106058916228777>","639106058916228844"],"ogSiteName":"Mimecast","ogTitle":"Release Message","VirtualFolder":["\\","/"],"viewport":"width=device-width, initial-scale=1, shrink-to-fit=no","og:description":"Mimecast API Release Message","language":"en","title":"Release Message | Mimecast","theme-color":"#ffffff","og:title":"Release Message","og:site_name":"Mimecast","robots":"index, follow","og:url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/","description":"Mimecast API Release Message","favicon":"https://integrations.mimecast.com/sc-static/img/favicons/icons_m_192x192.png","scrapeId":"019d46c9-4df1-70ca-9269-be886ca04ee5","sourceURL":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/","url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/","statusCode":200,"contentType":"text/html; charset=utf-8","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"956772c5-e758-43fd-b66b-7be8939a6533","creditsUsed":1}},{"url":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway","title":"API & Integrations - Managing API 2.0 for Cloud Gateway Mimecast","description":"This article contains information on managing API 2.0 applications during Mimecast's migration to the Integrations Hub, including creation, ...","position":5,"markdown":"Service Updates!\n\nTo stay informed, please visit the [Service Updates](https://mimecastsupport.zendesk.com/hc/en-us/sections/36032561852563-Service-Updates) page and click the _**Follow**_ button. Thank you!\n\nClose\n\n[Skip to main content](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#main-content)\n\nBrowse help topics\n\n- Application Downloads\n\n\n\n - Application Downloads\n\n\n- Knowledge Hubs\n\n\n\n - Core Security Products\n\n\n\n - Email Security - API\n\n\n\n - Onboarding\n\n - Guides\n\n - Analysis & Response\n\n - Human Risk Command Center\n\n - Archive\n\n - Services\n\n - Users & Groups\n\n\n\n - Authentication\n\n - Applications\n\n - Attributes\n\n - Directory Synchronization\n\n - Directories\n\n\n - Policies\n\n - Integrations\n\n - Account\n\n\n - Email Security - MX\n\n\n\n - Guides & Resources\n\n - Administration\n\n - Analysis & Response\n\n - Brand Indicators Message Identification (BIMI)\n\n - Connect Application\n\n - Connect Process\n\n - Content Examination\n\n - Continuity\n\n\n\n - Guides & Resources\n\n\n - Directory Synchronization\n\n - DNS-based Authentication of Named Entities (DANE)\n\n - Email Security Setup Wizard\n\n - Exchange\n\n - Journaling\n\n - Mail Flow\n\n - Message Routing\n\n - Mimecast Administration Console\n\n\n\n - Advanced Account Administration / Federated Account Administration\n\n - Message Center\n\n\n\n - Accepted Messages\n\n - Bounced Messages\n\n - Held Messages\n\n - Message Tracking\n\n - Rejected & Deferred Messages\n\n\n - Account\n\n\n\n - Account Settings\n\n - Audit Logs\n\n - Roles\n\n\n - Directories\n\n - Services\n\n\n\n - Applications\n\n - Authentication\n\n - Authentication Profiles\n\n - Secure Messages\n\n - SMS Dashboard\n\n\n - Notification Sets\n\n - Policies\n\n - Reporting\n\n\n\n - Mimecast Account Assessment Report\n\n\n - Spam / Phishing\n\n - Security & Efficacy\n\n - Service Monitor\n\n - Targeted Threat Protection\n\n\n\n - Attachment Protect\n\n\n\n - Guides & Resources\n\n\n - Impersonation Protect\n\n\n\n - Guides & Resources\n\n\n - Internal Email Protect\n\n - URL Protect\n\n\n\n - Guides & Resources\n\n\n - Threat Intelligence & Remediation\n\n\n - Email Security Cloud Integrated\n\n\n\n - Guides & Resources\n\n - Getting Started\n\n - Awareness Training\n\n - Configuration\n\n - User Management\n\n - Home\n\n - Detections\n\n - Mail Flow\n\n - Reporting & Analytics\n\n - Audit Logs\n\n - Advanced BEC\n\n - Engage\n\n - Collaboration Security\n\n\n\n - Protection for Sharepoint & OneDrive\n\n - Protection for Microsoft Teams\n\n\n - DMARC Analyzer\n\n - Sync & Recover\n\n - Targeted Threat Protection Attachment Protect\n\n\n - Security Add-Ons\n\n\n\n - DMARC Analyzer 2.0\n\n - Large File Send\n\n\n\n - Guides & Resources\n\n\n - Advanced BEC\n\n - Browser Isolation\n\n - Collaboration Security\n\n\n\n - Guides & Resources\n\n\n - Brand Exploit Protect\n\n\n\n - Guides & Resources\n\n\n - CyberGraph\n\n\n\n - Guides & Resources\n\n - Misaddressed Email Protect\n\n\n - DMARC Analyzer\n\n\n\n - Guides & Resources\n\n\n - Secure Messaging\n\n\n\n - Guides & Resources\n\n\n - Web Security\n\n\n\n - Guides & Resources\n\n - Overview\n\n - Configuration\n\n - Reporting\n\n - General\n\n - Mimecast Security Agent for iOS\n\n - Mimecast Security Agent for Mac\n\n - Mimecast Security Agent for Windows\n\n - Mimecast Security Agent for Windows Server\n\n - Troubleshooting\n\n\n - Human Risk Management\n\n\n\n - Human Risk Command Center\n\n - Incydr\n\n\n\n - Incydr administration\n\n\n\n - Incydr console reference\n\n - Configuring\n\n\n\n - SCIM provisioning\n\n - Identity management\n\n\n - Monitoring and managing\n\n\n\n - Roles resources\n\n - Incydr API resources\n\n - Incydr User Directory Sync resources\n\n - Device migration with the backup agent\n\n - Backup agent reporting\n\n\n - Planning and installing\n\n\n\n - Manage agent installations in your Incydr environment\n\n - Security hardening\n\n - Implement Incydr\n\n\n - Troubleshooting\n\n - Licenses\n\n\n - IRM Launchpad\n\n - Release notes\n\n\n\n - Incydr release notes\n\n - Previous version release notes\n\n\n - Terms and conditions\n\n\n\n - Platform support policy\n\n\n\n - Operating system support policy\n\n\n - Product lifecycle policy\n\n - Incydr customer support resources\n\n\n\n - Incydr product plans\n\n\n - Legal terms and conditions\n\n\n\n - Previous agreements\n\n\n - Compliance resources\n\n - Open source licenses\n\n\n - Announcements\n\n\n\n - Incydr announcements\n\n - Backup add-on announcements\n\n\n - Using the backup agent\n\n\n\n - Get started\n\n - Backup\n\n - Restore files\n\n - Configuring\n\n - Backup agent reference\n\n - Troubleshooting\n\n\n - API & Integrations\n\n\n\n - Guides & Resources\n\n\n - Awareness Training\n\n\n\n - Guides & Resources\n\n - Access & Overview\n\n - Settings & Configuration\n\n\n\n - Settings\n\n - Configuration\n\n - Rapid Deployment\n\n\n - Training Queues\n\n - Phishing Training\n\n - My Training Library\n\n - Reporting\n\n - Troubleshooting\n\n\n - Engage\n\n\n\n - Guides & Resources\n\n - Access and Overview\n\n - Settings & Configuration\n\n\n\n - Rapid Deployment\n\n - Configuration\n\n - Settings\n\n\n - Human Risk\n\n - Training Queues\n\n - Phishing Training\n\n - My Training Library\n\n - Reporting\n\n - Nudges\n\n - Scorecards\n\n - Troubleshooting\n\n\n - Data Governance, Compliance & Insights\n\n\n\n - Aware 2.0\n\n\n\n - Video How-to Tutorials\n\n\n\n - User Data Removal\n\n - Signal\n\n - Search & Discover\n\n - Retention\n\n - Data Hold\n\n\n - Risk Management Suite\n\n\n\n - Search & Discover\n\n - Data Hold\n\n - Retention\n\n\n - Platform Documentation\n\n - Platform Administrator Capabilities\n\n - Community Management & Insights\n\n\n\n - Spotlight\n\n - Signal\n\n - Example Use Cases\n\n\n - Archiving\n\n - Archive for Microsoft Teams\n\n\n\n - Guides & Resources\n\n\n - Case Review\n\n\n\n - Guides & Resources\n\n\n - eDiscovery\n\n - Mimecast Synchronization Engine\n\n - Aware\n\n\n\n - Community Management & Insights\n\n\n\n - Example Use Cases\n\n - Spotlight\n\n - Signal\n\n - Surveys\n\n\n - Risk Management Suite\n\n\n\n - User Data Removal\n\n - Retention\n\n - Data Hold\n\n - Search & Discover\n\n\n - Platform Administrator Capabilities\n\n - Platform Documentation\n\n - Video How-To Tutorials\n\n\n\n - Spotlight\n\n - Signal\n\n - Search & Discover\n\n - Data Hold\n\n - Retention\n\n - User Data Removal\n\n\n - Sync & Recover\n\n\n\n - Guides & Resources\n\n\n - Supervision\n\n\n\n - Guides & Resources\n\n\n - Simply Migrate\n\n\n\n - Guides & Resources\n\n\n - End User & Web Applications\n\n\n\n - User Portal\n\n - End User Assets\n\n - Mimecast Essentials for Outlook\n\n - Mimecast for Mac\n\n\n\n - Installation\n\n - Preferences & Settings\n\n - Using Your Mailboxes\n\n - Archive Folders\n\n - Managed Senders\n\n - Large File Send\n\n - Searching\n\n - Help & Feedback\n\n\n - Mimecast for Outlook\n\n - Mimecast Mobile\n\n\n\n - Installation\n\n - Using Mimecast Mobile\n\n - Configuration\n\n\n - Mimecast Personal Portal\n\n - Stationery\n\n\n - Mimecast Customer Care\n\n\n\n - Customer Alerts Notes\n\n - Mimecast University\n\n\n\n - Guides & Resources\n\n\n - Mimecast Partner\n\n\n\n - Jersey\n\n\n- Known Issues\n\n\n\n - API & Integrations\n\n - Awareness Training\n\n - Case Review\n\n - CyberGraph\n\n - Data Retention\n\n\n\n - Simply Migrate\n\n\n - DMARC Analyzer\n\n - Email Security Cloud Gateway\n\n - Email Security Cloud Integrated\n\n - End User Applications\n\n\n\n - Mimecast Essentials for Outlook\n\n - Mimecast for Mac\n\n - Mimecast Mobile\n\n - Mimecast for Outlook\n\n - Mimecast Personal Portal\n\n\n - Human Risk\n\n - Reporting\n\n - Sync & Recover\n\n - Targeted Threat Protection\n\n\n- Service Updates\n\n\n\n - Service Updates\n\n\nThis article contains information on managing API 2.0 applications during Mimecasts migration to the _**Integrations Hub**_, including creation, updates, deletion, and key regeneration.\n\n## Migration to the Integrations Hub\n\nMimecast is in the process of moving management of all API 2.0 applications from the _**API and Platform Integrations**_ page to the _**Integrations Hub**_. During this process, older apps may still be managed on the _**API and Platform Integrations**_ page, and all newly created apps should be managed from the _**Integrations Hub**_.\n\n## Prerequisites\n\nThe designated administrator must be assigned a Role with the following criteria.\n\n- _**Read**_ and _**Edit**_ API Application Permissions under the Service Menu.\n- _**Security Permissions**_ setting must permit the Management of Application Roles.\n\nCustom roles should be created for each API 2.0 Application with the _**least required privileges applied.**_\n\n## Creating an API 2.0 Application\n\nTo create an API 2.0 Application, follow the steps below:\n\n1. Log in to _**Mimecast Administration Console**_.\n2. Navigate to _**Integrations \\| Integrations Hub**_.\n3. If you haven't accepted before, you may see a popup asking you to accept our _**API Terms and Conditions**_. Review and accept these terms before creating any API applications.\n4. Locate the following _**Mimecast API 2.0**_ tile and click _**Configure New.**_\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264544275)\n\n5. Under _**Details**_, populate the following fields:\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635233772691)\n\n- _**Application Name**_: A name to uniquely identify this application. Once saved, this value cannot be changed.\n- _**Products**_: The API products that will be used, which are categories of API endpoints. The products are a one-to-one mapping with the tiles on our API documentation. Once saved, the products cannot be modified.\n- _**Application Role**_: The administrative role to scope what this API application is allowed to do. Roles can be managed under _**Account**_ \\| _**Admin Roles**_.\n- _**Description**_: A free-form text field that can be used to described the application and its purpose. This can be modified after the app has been created.\n\n6. Under _**Notification Settings**_, populate the following fields:\n\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635233773331)\n\n- _**Technical Point of Contact**_: The name of the person or team that should be notified if we need to reach out about the specific application.\n- _**Email**_: The email address of the person to be contacted, if needed. This can be a user or a group address.\n\n7. Click _**Save**_.\n8. A popup will appear with a masked _**Client ID**_ and _**Client Secret**_. Copy these to a secure location, as the secret will not be shown again.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635233773843)\n\n9. Once saved, click _**Close**_.\n\n## Updating an API 2.0 Application\n\n1. Log into the _**Mimecast Administration Console**_.\n2. Navigate to _**Integrations**_ \\| _**Integrations Hub**_.\n3. Locate the _**API 2.0**_ tile and click _**View**_.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264548115)\n\n4. Find and click on the application that you wish to modify.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264548627)\n\nThis action can also be accessed by clicking on the meatball icon.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264549139)\n\n5. Change the fields as needed.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635233776147)\n\n6. Click _**Save**_.\n\n## Deleting an API 2.0 Application\n\nTo delete an API application, follow these steps:\n\n1. Log into the _**Mimecast Administration Console.**_\n2. Navigate to _**Integrations**_ \\| _**Integrations Hub.**_\n3. Locate the _**API 2.0**_ tile and click _**View**_.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635233776787)\n\n4. Find and click on the application you want to delete.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635233777299)\n\nThis action can also be accessed by clicking on the meatball icon.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264552595)\n\n5. Click _**Delete**_.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264553107)\n\n6. Confirm that you want to delete the application by clicking _**Delete**_.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264553747)\n\nCredentials for this API Application will no longer be valid from this point forward.\n\n## Regenerating Keys\n\nTo generate a new, fresh Client ID and Secret Keys, follow these steps:\n\n1. Log into the _**Mimecast Administration Console.**_\n2. Navigate to _**Integrations**_ \\| _**Integrations Hub.**_\n3. Locate the _**API 2.0**_ tile and click _**View**_.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635233778835)\n\n4. Find and click on the application for which you want to generate new keys.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264554899)\n\n5. Click _**Reset Keys**_.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635233779859)\n\n6. Click _**Regenerate**_ to confirm you want to obtain a new set of keys.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264555795)\n\n7. A popup will appear with a masked _**Client ID**_ and _**Client Secret**_. Copy these to a secure location, as the secret will not be shown again.\n\n![](https://mimecastsupport.zendesk.com/hc/article_attachments/48635264556691)\n\n8. Once saved, click _**Close**_.\n\n## Legacy Keys Generated Under API and Platforms Integrations\n\nIf you've previously an API 2.0 application on the API and Platform Integrations section of the Administration Console, those will continue to be managed on that page at this time. In future, we will automatically move these to the Integrations Hub.\n\nNew applications will only be managed on the Integrations Hub.\n\n### Steps to manage an older application\n\n1. Log into the _**Mimecast Administration Console**_.\n2. Navigate to _**Integrations**_ \\| _**API and Platform Integrations**_.\n3. Click on the _**API 2.0 Applications**_ tab.\n4. Click on the application you wish to manage.\n5. Select an action flyout:\n\n- _**Edit**_: Modify information about the application, products, roles and notification contact information.\n- _**Manage API 2.0 Credentials**_: This will generate a new set of API keys for this app.\n- _**Delete**_: Remove this integration and its associated API keys if no longer needed.\n\nThis page uses an older management experience, where sections are selected on the left (Disclaimer, Details, Notifications).\n\n## See Also...\n\n- [Mimecast Developer](https://developer.services.mimecast.com/)\n- [API & Integrations - Managing API Applications](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000389337491)\n\n#### Related to\n\n- [Article](https://mimecastsupport.zendesk.com/hc/en-us/search?content_tags=01JCDB7FXFCB9A9493TVJ90GS6&utf8=%E2%9C%93 \"Search results\")\n- [API & Integrations](https://mimecastsupport.zendesk.com/hc/en-us/search?content_tags=01JCK4N0EPJF6KTPT3MABR16T9&utf8=%E2%9C%93 \"Search results\")\n- [Email Security - MX](https://mimecastsupport.zendesk.com/hc/en-us/search?content_tags=01KHKDGGTJ2C9RGD5GZ7PXX7M0&utf8=%E2%9C%93 \"Search results\")\n\nPlease [sign in](https://mimecastsupport.zendesk.com/access?locale=en-us&brand_id=28063027612179&return_to=https%3A%2F%2Fmimecastsupport.zendesk.com%2Fhc%2Fen-us%2Farticles%2F34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway) to leave a comment.\n\n#### Table of contents\n\nMigration to the Integrations Hub\n\n- [Migration to the Integrations Hub](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01KFBA474MS5X46Z6H5XRNKPJR)\n- [Prerequisites](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01JK62GWQ91FX2VPS7EWE3M9RX)\n- [Creating an API 2.0 Application](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01JK62GWQ9AE524DJTXZM30MCC)\n- [Updating an API 2.0 Application](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01KFB81FD9RT5KE806VVBRP38C)\n- [Deleting an API 2.0 Application](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01JK62N126BMPMR6VN571TRCFB)\n- [Regenerating Keys](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01JK62N126DCHAZMSTQKKTC586)\n- [Legacy Keys Generated Under API and Platforms Integrations](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01KFB9ED2D21SH2EFQ0VYF59EA)\n- [Steps to manage an older application](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01KFB9PBYSNVX9HXFCMH8D213N)\n- [See Also...](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#h_01KFBA1T43EM1SW3B1B6EA3K2T)\n- [Related to](https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway#related-to-9)\n\nReturn to top\n\n\ninstallation, branding, customization","metadata":{"og:url":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway","og:type":"website","og:description":"This article contains information on managing API 2.0 applications during Mimecasts migration to the Integrations Hub, including creation, updates, deletion, and key regeneration.Migration to the ...","viewport":"width=device-width, initial-scale=1.0","og:title":"API & Integrations - Managing API 2.0 for Cloud Gateway","title":"API & Integrations - Managing API 2.0 for Cloud Gateway Mimecast","language":"en-US","ogImage":"https://mimecastsupport.zendesk.com/hc/theming_assets/01JDW0MS8H4Q6FHWQV5JKA1XPB","ogSiteName":"Mimecast","description":"This article contains information on managing API 2.0 applications during Mimecasts migration to the Integrations Hub, including...","ogTitle":"API & Integrations - Managing API 2.0 for Cloud Gateway","og:image":"https://mimecastsupport.zendesk.com/hc/theming_assets/01JDW0MS8H4Q6FHWQV5JKA1XPB","og:site_name":"Mimecast","ogUrl":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway","ogDescription":"This article contains information on managing API 2.0 applications during Mimecasts migration to the Integrations Hub, including creation, updates, deletion, and key regeneration.Migration to the ...","favicon":"https://mimecastsupport.zendesk.com/hc/theming_assets/01JZ0NAR4QXDPSW25VSVN5Y2WC","scrapeId":"019d46c9-4df1-70ca-9269-c010647a9764","sourceURL":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway","url":"https://mimecastsupport.zendesk.com/hc/en-us/articles/34000360548755-API-Integrations-Managing-API-2-0-for-Cloud-Gateway","statusCode":200,"contentType":"text/html; charset=utf-8","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"2bc1e5ed-2a8b-4f9d-a712-6581c05d22be","creditsUsed":1}},{"url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/","title":"Message Queues - API and Integrations | Mimecast","description":"Message Queue Endpoints: Find Processing Messages · Get Hold Message List · Get Message Detail · Get File · Get Message Hold Summary List · Reject Message ...","position":6,"markdown":"**Message Queue Endpoints:**\n\n- [Find Processing Messages](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/find-processing-messages/)\n- [Get Hold Message List](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-message-list/)\n- [Get Message Detail](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-message-detail/)\n- [Get File](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-file/)\n- [Get Message Hold Summary List](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/get-hold-summary-list/)\n- [Reject Message](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/reject-message/)\n- [Release Message](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/release-message/)\n- [Inbound & Outbound Queues](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/inbound-outbound-queues/)\n\n[Back to Top](https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/#)","metadata":{"language":"en","VirtualFolder":["\\","/"],"ogTitle":"Message Queues","description":"Mimecast API Message Queues","theme-color":"#ffffff","ogDescription":"Mimecast API Message Queues","og:site_name":"Mimecast","robots":"index, follow","author":"mimecast","twitter:card":"summary_large_image","title":"Message Queues | Mimecast","VIcurrentDateTime":["639106058916369986>","639106058916370038"],"ogUrl":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/","ogSiteName":"Mimecast","og:description":"Mimecast API Message Queues","og:url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/","viewport":"width=device-width, initial-scale=1, shrink-to-fit=no","og:title":"Message Queues","favicon":"https://integrations.mimecast.com/sc-static/img/favicons/icons_m_192x192.png","scrapeId":"019d46c9-4df1-70ca-9269-c5b66b0a7d71","sourceURL":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/","url":"https://integrations.mimecast.com/documentation/endpoint-reference/message-queues/","statusCode":200,"contentType":"text/html; charset=utf-8","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"963bdd6d-9086-4cee-89da-462410b57297","creditsUsed":1}},{"url":"https://integrations.mimecast.com/documentation/api-2,-d-,0-reference/","title":"API 2-0 Reference | Mimecast","description":"Get Message Info · Message Queues Expand or Collapse Message Queues Children. Find Processing Messages · Get Hold Message List · Get Message Detail · Get File.","position":7,"markdown":"[Back to Top](https://integrations.mimecast.com/documentation/api-2,-d-,0-reference/#)","metadata":{"language":"en","viewport":"width=device-width, initial-scale=1, shrink-to-fit=no","VirtualFolder":["\\","/"],"author":"mimecast","ogUrl":"https://integrations.mimecast.com/documentation/api-2,-d-,0-reference/","VIcurrentDateTime":["639106058915664328>","639106058915664386"],"ogSiteName":"Mimecast","title":"API 2-0 Reference | Mimecast","robots":"index, follow","theme-color":"#ffffff","og:site_name":"Mimecast","og:url":"https://integrations.mimecast.com/documentation/api-2,-d-,0-reference/","twitter:card":"summary_large_image","favicon":"https://integrations.mimecast.com/sc-static/img/favicons/icons_m_192x192.png","scrapeId":"019d46c9-4df1-70ca-9269-ca16554aae73","sourceURL":"https://integrations.mimecast.com/documentation/api-2,-d-,0-reference/","url":"https://integrations.mimecast.com/documentation/api-2,-d-,0-reference/","statusCode":200,"contentType":"text/html; charset=utf-8","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"d258b49b-c98e-4edb-88b7-e65254dac257","creditsUsed":1}},{"url":"https://www.postman.com/api-evangelist/d6740a2c-d4d3-410b-b25a-9b8eb475f08e/request/s17i08u/get-message-hold-summary-list","title":"Get Message Hold Summary List | Mimecast | Postman API Network","description":"Start sending API requests with the Get Message Hold Summary List public request from Mimecast on the Postman API Network.","position":8,"markdown":"POST\n\nGet Message Hold Summary List\n\nEnvironment\n\nNo environment\n\nSave\n\nShare\n\n{{baseUrl}}/api/gateway/get-hold-summary-list\n\nSend\n\n- Overview\n- Params\n- Authorization\n- Headers 1\n- Body\n- Scripts\n- Settings\n\nCookies\n\n# Get Message Hold Summary List\n\n[View complete documentation](https://www.postman.com/api-evangelist/documentation/35240-1181ba4e-61bb-4025-ad8f-4fda717595b3?entity=request-35240-b28aaeeb-f172-4ebe-9ec7-d95f6954468b)\n\nhttps://us-api.mimecast.com/api/gateway/get-hold-summary-list\n\n## Body\n\nraw (text)\n\ntext\n\n```text\n\"\"\n```\n\n## Code Snippet\n\ncURL\n\n## Example\n\ndefault\n\nRequest\n\ncURL\n\n```curl\ncurl --location 'https://us-api.mimecast.com/api/gateway/get-hold-summary-list' \\\n--data '\"\"'\n```\n\n500 Internal Server Error\n\nResponse\n\n- Body\n- Headers (1)\n\nNo response body\n\nThis request doesn't return any response body.\n\nContent-Type\n\ntext/plain\n\n##### Response\n\nSend + Get a successful responseSend + Visualize responseSend + Write tests\n\nAI\n\n#### Sign in to use Postman Agent.\n\nSign in\n\nOnline\n\nBrowser Agent\n\n- Overview\n- Params\n- Authorization\n- Headers 1\n- Body\n- Scripts\n- Settings\n\n- Body\n- Headers (1)\n\n- Mimecast/\n- api/\n- gateway/\n- Get Message Hold Summary List","metadata":{"title":"Get Message Hold Summary List | Mimecast | Postman API Network","og:image":"https://www.postman.com/_ar-assets/js/images/postman-api-platform-social-preview-14a81059eaf1b6db.jpg","prerender-status-code":"301","twitter:description":"Start sending API requests with the Get Message Hold Summary List public request from Mimecast on the Postman API Network.","og:url":"https://www.postman.com/api-evangelist/mimecast/request/s17i08u/get-message-hold-summary-list","ogTitle":"Get Message Hold Summary List | Mimecast","og:title":"Get Message Hold Summary List | Mimecast","language":"en-US","viewport":"width=device-width,height=device-height,initial-scale=1,shrink-to-fit=no","og:description":"Start sending API requests with the Get Message Hold Summary List public request from Mimecast on the Postman API Network.","twitter:image":"https://www.postman.com/_ar-assets/js/images/postman-api-platform-social-preview-14a81059eaf1b6db.jpg","twitter:card":"summary_large_image","ogDescription":"Start sending API requests with the Get Message Hold Summary List public request from Mimecast on the Postman API Network.","og:site_name":"Postman","ogSiteName":"Postman","twitter:title":"Get Message Hold Summary List | Mimecast","twitter:creator":"@getpostman","description":"Start sending API requests with the Get Message Hold Summary List public request from Mimecast on the Postman API Network.","ogImage":"https://www.postman.com/_ar-assets/js/images/postman-api-platform-social-preview-14a81059eaf1b6db.jpg","ogUrl":"https://www.postman.com/api-evangelist/mimecast/request/s17i08u/get-message-hold-summary-list","prerender-header":"Location: https://www.postman.com/api-evangelist/mimecast/request/s17i08u/get-message-hold-summary-list","twitter:site":"@getpostman","og:type":"profile","favicon":"https://www.postman.com/_ar-assets/images/favicon-1-16.png","scrapeId":"019d46c9-4df1-70ca-9269-cf85dc93db9e","sourceURL":"https://www.postman.com/api-evangelist/d6740a2c-d4d3-410b-b25a-9b8eb475f08e/request/s17i08u/get-message-hold-summary-list","url":"https://www.postman.com/api-evangelist/mimecast/request/s17i08u/get-message-hold-summary-list?sideView=agentMode","statusCode":200,"contentType":"text/html","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"4c2a56e6-6bab-4472-9922-88964eb06047","creditsUsed":1}},{"url":"https://prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages","title":"How to access Mimecast 'On Hold' messages - Pro Drive IT Ltd Blog","description":"On this vlog, we look at how to access and work with Mimecast 'on hold' messages via the Mimecast website portal or Outlook app.","position":9,"markdown":"[Skip to content](https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages#content)\n\n[Benchmark Survey](https://prodriveitmaturitysurvey.scoreapp.com/)\n\n[Get Help](https://prodriveit.co.uk/help)\n\n[![2x Sticky | Pro Drive IT](https://prodriveit.co.uk/wp-content/uploads/2017/03/prodrive-logo-sticky-2x.png)](https://prodriveit.co.uk/)\n\n[Previous](https://www.prodriveit.co.uk/blog/important-microsoft-365-licensing-changes) [Next](https://www.prodriveit.co.uk/blog/4-lawtech-fixes-to-ace-your-caseload)\n\n# How to access Mimecast On Hold messages\n\nIn our series of how to videos we include tips on using Mimecast cloud cybersecurity. This time, we look at how to access and work with Mimecast on hold messages via the Mimecast website portal or Outlook app.\n\n[Mimecast](https://www.mimecast.com/) provides a whole range of tools for email, data and web to help prevent cyber threats affecting your business. Here we focus on email messages.\n\n## Watch the video or read on to learn how to get the best out of your Mimecast on hold messages system.\n\nHow to access Mimecast 'On Hold' messages on Outlook/Mimecast - YouTube\n\nTap to unmute\n\n[How to access Mimecast 'On Hold' messages on Outlook/Mimecast](https://www.youtube.com/watch?v=47e2pyR6q-Y) [Pro Drive IT](https://www.youtube.com/channel/UC3E8epkg2QhPv7IaMsoVkPA)\n\n![thumbnail-image](https://yt3.ggpht.com/n5ELxGVcwWl-HQ2nIhYuGS2iA1kjBzi3lkms7TgBrAXe3y8TBGHhjnlNHmSOADa9vVOqSrgHGw=s68-c-k-c0x00ffffff-no-rj)\n\nPro Drive IT150 subscribers\n\n[Watch on](https://www.youtube.com/watch?v=47e2pyR6q-Y)\n\n**Mimecast on Outlook**\n\n1\\. On your Outlook youll have the Home tab options and you will see the Mimecast add-in.\n\n2\\. Click on that and youll see the on hold messages button.\n\n3\\. Here, you will be able to see any on hold messages that are in your personal queue, or in your moderated queue. A personal queue is any email sent to your inbox and the moderated queue is for any mailboxes that you look after such as info at or sales at, where you might be an overseer. Note that this would need to be set up beforehand, so just for this video we will be looking at the personal on hold messages.\n\n4\\. Select personal and hold and you will get a pop-up screen that will show you any messages that are on hold. You can click on them and have a quick read for your security Mimecast doesnt show any images but you can opt to click to display them as well. It also tells you why the messages is being held for example, it could be the Spam Signature Policy.\n\n5\\. Using that example, if you see that it isnt a spam message, along the top bar there is a release button. You can click release and permit the address. That will add the single address into your permit list. This means that this account will never be blocked for spam again.\n\n6\\. There is also the release message and permit domain option. That will add the domain to your allow list. Now this can be a very useful tool if you receive emails from, say, a customer or client and they often get blocked for spam. However, we dont recommend adding anything such as Yahoo, Gmail or Outlook.com to this allow list as then, all these emails will miss this important cybersecurity check.\n\n7\\. Instead of releasing the email you can also reject the email. This deletes it.\n\n8\\. Or you can reject message and block the address, which is just for the one specific address that sent you the email (which is the most preferred option).\n\n9\\. Or you can reject message and block the domain as well. You are less likely to need this remember, if you were to block someone such as@gmail.com or outlook or Yahoo then no one from that whole domain will be able to send you any emails at all!\n\n10\\. You can also mark messages as spam and these can be sent off to Mimecast for analysis, so they can help prevent these in the future.\n\n**Mimecast personal portal**\n\n1\\. [Log into Mimecast](https://login.mimecast.com/u/login/?gta=apps#/login) and enter your email address and password, as well as the multifactor authentication code if required.\n\n2\\. On the next screen, youll see the Mimecast personal portal option.\n\n3\\. Log into this option and you will see your inbox, where you have access to emails. On the left-hand side there are three dots, for the advanced option. Click into that to view your personal on hold messages.\n\nAs with the Outlook instructions above, you can read emails, report as spam/phishing, or release the message, permit sender or domain or reject the message sender or domain. You can also access the moderated on hold as well if you do have access to any shared mailboxes.\n\nSo thats it for working with your Mimecast on hold messages.\n\n**We can help you with all kinds of [cybersecurity](https://prodriveit.co.uk/cyber-security) issues, including [Cyber Essentials,](https://prodriveit.co.uk/cyber-security/cyber-essentials) as well as other [business IT support](https://prodriveit.co.uk/business-it-support). If you have any questions, please feel free to contact us below.**\n\n[hypedmarketing](https://www.prodriveit.co.uk/blog/author/hypedmarketing \"Posts by hypedmarketing\")2021-11-24T10:55:33+00:00September 22nd, 2021\\| [Cyber Security](https://www.prodriveit.co.uk/blog/category/cyber-security), [Remote Working](https://www.prodriveit.co.uk/blog/category/remote-working), [Security and Threats](https://www.prodriveit.co.uk/blog/category/security-and-threats), [Tips and Advice](https://www.prodriveit.co.uk/blog/category/tips-and-advice) \\|Comments Off on How to access Mimecast On Hold messages\n\n#### Share This Story, Choose Your Platform!\n\n[Facebook](https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.prodriveit.co.uk%2Fblog%2Fhow-to-access-mimecast-on-hold-messages&t=How%20to%20access%20Mimecast%20%E2%80%98On%20Hold%E2%80%99%20messages \"\") [X](https://x.com/intent/post?url=https%3A%2F%2Fwww.prodriveit.co.uk%2Fblog%2Fhow-to-access-mimecast-on-hold-messages&text=How%20to%20access%20Mimecast%20%E2%80%98On%20Hold%E2%80%99%20messages \"\") [Reddit](https://reddit.com/submit?url=https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages&title=How%20to%20access%20Mimecast%20%E2%80%98On%20Hold%E2%80%99%20messages \"\") [LinkedIn](https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fwww.prodriveit.co.uk%2Fblog%2Fhow-to-access-mimecast-on-hold-messages&title=How%20to%20access%20Mimecast%20%E2%80%98On%20Hold%E2%80%99%20messages&summary=In%20our%20series%20of%20%E2%80%98how%20to%E2%80%99%20videos%20we%20include%20tips%20on%20using%20Mimecast%20cloud%20cybersecurity.%20This%20time%2C%20we%20look%20at%20how%20to%20access%20and%20work%20with%20Mimecast%20%27on%20hold%27%20messages%20via%20the%20Mimecast%20website%20portal%20or%20Outlook%20app.%0D%0A%0D%0AMimecast%20provides%20a%20whole%20range%20of%20tool \"\") [Tumblr](https://www.tumblr.com/share/link?url=https%3A%2F%2Fwww.prodriveit.co.uk%2Fblog%2Fhow-to-access-mimecast-on-hold-messages&name=How%20to%20access%20Mimecast%20%E2%80%98On%20Hold%E2%80%99%20messages&description=In%20our%20series%20of%20%E2%80%98how%20to%E2%80%99%20videos%20we%20include%20tips%20on%20using%20Mimecast%20cloud%20cybersecurity.%20This%20time%2C%20we%20look%20at%20how%20to%20access%20and%20work%20with%20Mimecast%20%26%2339%3Bon%20hold%26%2339%3B%20messages%20via%20the%20Mimecast%20website%20portal%20or%20Outlook%20app.%0D%0A%0D%0AMimecast%20provides%20a%20whole%20range%20of%20tools%20for%20email%2C%20data%20and%20web%20to%20help%20prevent%20cyber%20threats \"\") [Pinterest](https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fwww.prodriveit.co.uk%2Fblog%2Fhow-to-access-mimecast-on-hold-messages&description=In%20our%20series%20of%20%E2%80%98how%20to%E2%80%99%20videos%20we%20include%20tips%20on%20using%20Mimecast%20cloud%20cybersecurity.%20This%20time%2C%20we%20look%20at%20how%20to%20access%20and%20work%20with%20Mimecast%20%26%2339%3Bon%20hold%26%2339%3B%20messages%20via%20the%20Mimecast%20website%20portal%20or%20Outlook%20app.%0D%0A%0D%0AMimecast%20provides%20a%20whole%20range%20of%20tools%20for%20email%2C%20data%20and%20web%20to%20help%20prevent%20cyber%20threats&media=https%3A%2F%2Fwww.prodriveit.co.uk%2Fwp-content%2Fuploads%2F2021%2F09%2FSlide2.jpeg \"\") [Email](mailto:?body=https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages&subject=How%20to%20access%20Mimecast%20%E2%80%98On%20Hold%E2%80%99%20messages \"\")\n\n## Related Posts\n\n![How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/purview-portal-500x383.png)\n\n[How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/blog/how-to-use-microsoft-365-to-automate-your-data-classification-policies) [How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/blog/how-to-use-microsoft-365-to-automate-your-data-classification-policies)\n\n![How to create a data classification framework](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/Creatre-data-classification-framework-500x383.png)\n\n[How to create a data classification framework](https://www.prodriveit.co.uk/blog/how-to-create-a-data-classification-framework) [How to create a data classification framework](https://www.prodriveit.co.uk/blog/how-to-create-a-data-classification-framework)\n\n![Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/AI-data-classification-500x383.jpg)\n\n[Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/blog/why-classifying-data-matters-more-than-ever-in-the-age-of-ai) [Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/blog/why-classifying-data-matters-more-than-ever-in-the-age-of-ai)\n\n![Why data classification matters for professional services firms](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/Data-classification-500x383.jpg)\n\n[Why data classification matters for professional services firms](https://www.prodriveit.co.uk/blog/why-data-classification-matters-for-professional-services-firms) [Why data classification matters for professional services firms](https://www.prodriveit.co.uk/blog/why-data-classification-matters-for-professional-services-firms)\n\n![How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/wp-content/uploads/2026/02/2025-11-05_10-03-16-500x383.png)\n\n[How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/blog/how-microsoft-copilot-turns-outlook-into-your-executive-assistant) [How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/blog/how-microsoft-copilot-turns-outlook-into-your-executive-assistant)\n\n![How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/purview-portal-500x383.png)\n\n[How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/blog/how-to-use-microsoft-365-to-automate-your-data-classification-policies) [How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/blog/how-to-use-microsoft-365-to-automate-your-data-classification-policies)\n\n![How to create a data classification framework](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/Creatre-data-classification-framework-500x383.png)\n\n[How to create a data classification framework](https://www.prodriveit.co.uk/blog/how-to-create-a-data-classification-framework) [How to create a data classification framework](https://www.prodriveit.co.uk/blog/how-to-create-a-data-classification-framework)\n\n![Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/AI-data-classification-500x383.jpg)\n\n[Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/blog/why-classifying-data-matters-more-than-ever-in-the-age-of-ai) [Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/blog/why-classifying-data-matters-more-than-ever-in-the-age-of-ai)\n\n![Why data classification matters for professional services firms](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/Data-classification-500x383.jpg)\n\n[Why data classification matters for professional services firms](https://www.prodriveit.co.uk/blog/why-data-classification-matters-for-professional-services-firms) [Why data classification matters for professional services firms](https://www.prodriveit.co.uk/blog/why-data-classification-matters-for-professional-services-firms)\n\n![How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/wp-content/uploads/2026/02/2025-11-05_10-03-16-500x383.png)\n\n[How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/blog/how-microsoft-copilot-turns-outlook-into-your-executive-assistant) [How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/blog/how-microsoft-copilot-turns-outlook-into-your-executive-assistant)\n\n![How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/purview-portal-500x383.png)\n\n[How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/blog/how-to-use-microsoft-365-to-automate-your-data-classification-policies) [How to use Microsoft 365 to automate your data classification policies](https://www.prodriveit.co.uk/blog/how-to-use-microsoft-365-to-automate-your-data-classification-policies)\n\n![How to create a data classification framework](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/Creatre-data-classification-framework-500x383.png)\n\n[How to create a data classification framework](https://www.prodriveit.co.uk/blog/how-to-create-a-data-classification-framework) [How to create a data classification framework](https://www.prodriveit.co.uk/blog/how-to-create-a-data-classification-framework)\n\n![Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/AI-data-classification-500x383.jpg)\n\n[Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/blog/why-classifying-data-matters-more-than-ever-in-the-age-of-ai) [Why classifying data matters more than ever in the age of AI](https://www.prodriveit.co.uk/blog/why-classifying-data-matters-more-than-ever-in-the-age-of-ai)\n\n![Why data classification matters for professional services firms](https://www.prodriveit.co.uk/wp-content/uploads/2026/03/Data-classification-500x383.jpg)\n\n[Why data classification matters for professional services firms](https://www.prodriveit.co.uk/blog/why-data-classification-matters-for-professional-services-firms) [Why data classification matters for professional services firms](https://www.prodriveit.co.uk/blog/why-data-classification-matters-for-professional-services-firms)\n\n![How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/wp-content/uploads/2026/02/2025-11-05_10-03-16-500x383.png)\n\n[How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/blog/how-microsoft-copilot-turns-outlook-into-your-executive-assistant) [How Microsoft Copilot Turns Outlook into Your Executive Assistant](https://www.prodriveit.co.uk/blog/how-microsoft-copilot-turns-outlook-into-your-executive-assistant)\n\nPro Drive IT\n\nExport House\n\n5 Henry Plaza\n\nVictoria Way\n\nWoking\n\nGU21 6QX\n\nPhone: [0330 124 3599](tel:03301243599)\n\nEmail: [hello@prodriveit.co.uk](mailto:hello@prodriveit.co.uk)\n\n### Stay up to date on our latest news, projects and events\n\n[Sign up](https://www.prodriveit.co.uk/opt-in)\n\n[![Cyber Essentials](data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27126%27%20height%3D%27150%27%20viewBox%3D%270%200%20126%20150%27%3E%3Crect%20width%3D%27126%27%20height%3D%27150%27%20fill-opacity%3D%220%22%2F%3E%3C%2Fsvg%3E)](https://prodriveit.co.uk/cyber-security/cyber-essentials)\n\n![IASME](https://www.prodriveit.co.uk/wp-content/uploads/2023/01/IASMElogo-GOLDcertified-2017-FINAL.png)\n\n© 2026 Pro Drive IT \\| Powered by [Hyped Marketing](http://hypedmarketing.co.uk/) \\| [Privacy policy](https://www.prodriveit.co.uk/privacy-policy).\n\n[Page load link](https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages#)\n\n[Go to Top](https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages#)\n\nChat Widget","metadata":{"language":"en-GB","og:locale":["en_GB","en_GB"],"og:type":["article","article"],"twitter:data2":"3 minutes","ogDescription":"On this vlog, we look at how to access and work with Mimecast 'on hold' messages via the Mimecast website portal or Outlook app.","tec-api-origin":"https://www.prodriveit.co.uk","article:published_time":["2021-09-22T09:19:52+00:00","2021-09-22T09:19:52+01:00"],"title":"How to access Mimecast 'On Hold' messages - Pro Drive IT Ltd Blog","twitter:label2":"Estimated reading time","ogLocale":"en_GB","og:image":["https://www.prodriveit.co.uk/wp-content/uploads/2021/09/Slide2.jpeg","https://www.prodriveit.co.uk/wp-content/uploads/2021/09/Slide2.jpeg"],"msapplication-TileImage":"https://prodriveit.co.uk/wp-content/uploads/2017/03/prodrive-fav-72.png","ti-site-data":"eyJyIjoiMTowITc6MCEzMDowIiwibyI6Imh0dHBzOlwvXC93d3cucHJvZHJpdmVpdC5jby51az90aS1vbmxpbmUtdXNlcnMtZ29vZ2xlPTEmYW1wO3A9JTJGYmxvZyUyRmhvdy10by1hY2Nlc3MtbWltZWNhc3Qtb24taG9sZC1tZXNzYWdlcyZhbXA7X3dwbm9uY2U9NThmODg5YmEzZSJ9","robots":"index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1","modifiedTime":"2021-11-24T10:55:33+00:00","description":"On this vlog, we look at how to access and work with Mimecast 'on hold' messages via the Mimecast website portal or Outlook app., In our series of how to videos we include tips on using Mimecast cloud cybersecurity. This time, we look at how to access and work with Mimecast 'on hold' messages via the Mimecast website portal or Outlook app.\n\nMimecast provides a whole range of tools for email, data and web to help prevent cyber threats","og:url":["https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages","https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages"],"generator":["AMP for WP 1.1.12","WordPress 6.9.4","Powered by Slider Revolution 6.7.38 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface."],"twitter:creator":"@ProDriveIT","ogSiteName":"Pro Drive IT Ltd","twitter:card":"summary_large_image","msapplication-TileColor":"#2b5797","twitter:data1":"hypedmarketing","viewport":["width=device-width, initial-scale=1","width=device-width, initial-scale=1","width=device-width, initial-scale=1"],"ogTitle":"How to access Mimecast 'On Hold' messages - Pro Drive IT Ltd Blog","ogImage":"https://www.prodriveit.co.uk/wp-content/uploads/2021/09/Slide2.jpeg","ogUrl":"https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages","og:title":["How to access Mimecast 'On Hold' messages - Pro Drive IT Ltd Blog","How to access Mimecast 'On Hold' messages - Pro Drive IT Ltd Blog"],"og:site_name":["Pro Drive IT Ltd","Pro Drive IT Ltd"],"tec-api-version":"v1","author":["hypedmarketing","hypedmarketing","HubSpot, Inc."],"twitter:site":"@ProDriveIT","twitter:label1":"Written by","article:modified_time":["2021-11-24T10:55:33+00:00","2021-11-24T10:55:33+01:00"],"og:image:height":["481","481"],"og:image:width":["720","720"],"publishedTime":"2021-09-22T09:19:52+00:00","og:description":["On this vlog, we look at how to access and work with Mimecast 'on hold' messages via the Mimecast website portal or Outlook app.","In our series of how to videos we include tips on using Mimecast cloud cybersecurity. This time, we look at how to access and work with Mimecast 'on hold' messages via the Mimecast website portal or Outlook app.\n\nMimecast provides a whole range of tools for email, data and web to help prevent cyber threats"],"article:publisher":"https://www.facebook.com/prodriveit","og:image:type":["image/jpeg","image/jpeg"],"favicon":"https://prodriveit.co.uk/wp-content/uploads/2017/03/prodrive-fav.png","scrapeId":"019d46c9-4df1-70ca-9269-d3e711fe3e8e","sourceURL":"https://prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages","url":"https://www.prodriveit.co.uk/blog/how-to-access-mimecast-on-hold-messages","statusCode":200,"contentType":"text/html; charset=UTF-8","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"4e24943d-e033-49f2-af69-bcb0f42461e0","creditsUsed":1}},{"url":"https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/","title":"Message Release Logs - API and Integrations | Mimecast","description":"This endpoint can be used to find messages that were either released to the recipient, with details about the user that processed the release.","position":10,"markdown":"**In this guide:**\n\n- [Description](https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/#description)\n- [Pre-requisites](https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/#pre-requisites)\n- [URI](https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/#uri)\n- [Request Headers](https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/#request-headers)\n- [Request Body](https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/#request-body)\n- [Response](https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/#response)\n- [Sample Code](https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/#sample-code)\n\n#### Description\n\nThis endpoint can be used to find messages that were either released to the recipient, with details about the user that processed the release. These logs also include messages that expired in the held queue, and were dropped by Mimecast housekeeping services.\n\n#### Pre-requisites\n\n- In order to successfully use this endpoint the logged in user must be a Mimecast administrator with at least the **Monitoring \\| Held \\| Read** permission.\n\n#### URI\n\nTo use this endpoint you send a POST request to:\n\n- /api/gateway/get-held-release-logs\n\n#### Request Headers\n\nThe following request headers must be included in your request:\n\n| **Field** | **Description** |\n| --- | --- |\n| Authorization | Please see the [Authorization](https://integrations.mimecast.com/documentation/EPiServer/CMS/Content/documentation/guides/authorization,,32461/?epieditmode=False) guide for more information on building the Authorization header. |\n| x-mc-req-id | A randomly generated GUID, for example,<br>```<br>8578FCFC-A305-4D9A-99CB-F4D5ECEFE297<br>``` |\n| x-mc-app-id | The Application ID provided with your Registered API Application. |\n| x-mc-date | The current date and time in the following format, for example,<br>```<br>Tue, 24 Nov 2015 12:50:11 UTC<br>``` |\n\n#### Request Body\n\n```\n\n{\n\n \"meta\": {\n\n \"pagination\": {\n\n \"pageSize\": 25,\n\n \"pageToken\": \"String\"\n\n }\n\n },\n\n \"data\": [\\\n\\\n {\\\n\\\n \"searchBy\": {\\\n\\\n \"fieldName\": \"heldReason\",\\\n\\\n \"value\": \"High-Confidence Impersonation Protection\"\\\n\\\n },\\\n\\\n \"filterBy\": [\\\n\\\n {\\\n\\\n \"fieldName\": \"route\",\\\n\\\n \"value\": \"inbound\"\\\n\\\n }\\\n\\\n ],\\\n\\\n \"start\": \"2015-11-16T14:49:18+00:00\",\\\n\\\n \"end\": \"2015-11-25T14:49:18+00:00\"\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n##### meta\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n| pagination | Object | Optional | An object defining paging options for the request. |\n\n##### Paginiation Object\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n| pageSize | Number | Optional | The number of results to request. |\n| pageToken | String | Optional | The value of the 'next' or 'previous' fields from an earlier request. |\n\n##### Data\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n| searchBy | Search Object | Optional | Field name and value on which to base search. |\n| filterBy | Array of Filter Objects | Optional | Filters that should be applied to the search results. |\n| start | Date String | Optional | The start date of results to return in ISO 8601 format. Default value is one month before the current date. |\n| end | Date String | Optional | The end date of results to return in ISO 8601 format. Default value is the current date. |\n\n##### Search Object\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n| fieldName | String | Optional | The field on which to be filtered. Possible field names are: all, operator, from, to, subject, info or heldReason |\n| value | String | Optional | The value of which the filter will be applied. |\n\n##### Filter Object\n\n| **Field** | **Type** | **Required** | **Description** |\n| --- | --- | --- | --- |\n| fieldName | String | Optional | The field on which to be filtered. Possible values are: route, status or attachments. |\n| value | String | Optional | The value of which the filter will be applied. Possible values for route are: all, internal, outbound, inbound or external. Possible values for status are: released or rejected. Possible values for attachments are: true or false. |\n\n#### Response\n\n```\n\n{\n\n \"fail\": [],\n\n \"meta\": {\n\n \"status\": 200,\n\n \"pagination\": {\n\n \"pageSize\": 25,\n\n \"next\": \"String\",\n\n \"previous\": \"String\"\n\n }\n\n },\n\n \"data\": [\\\n\\\n {\\\n\\\n \"heldReleaseLogs\": [\\\n\\\n {\\\n\\\n \"spamProcessingDetail\": {\\\n\\\n \"greyEmail\": true,\\\n\\\n \"permittedSender\": {\\\n\\\n \"allow\": true,\\\n\\\n \"info\": \"allow\"\\\n\\\n },\\\n\\\n \"managedSender\": {\\\n\\\n \"allow\": true,\\\n\\\n \"info\": \"allow\"\\\n\\\n },\\\n\\\n \"dkim\": {\\\n\\\n \"allow\": true,\\\n\\\n \"info\": \"allow\"\\\n\\\n },\\\n\\\n \"spf\": {\\\n\\\n \"allow\": true,\\\n\\\n \"info\": \"allow\"\\\n\\\n },\\\n\\\n \"rbl\": {\\\n\\\n \"allow\": true,\\\n\\\n \"info\": \"allow\"\\\n\\\n },\\\n\\\n \"dmarc\": {\\\n\\\n \"allow\": true,\\\n\\\n \"info\": \"allow\"\\\n\\\n },\\\n\\\n \"spamVerdict\": {\\\n\\\n \"decision\": \"spam\",\\\n\\\n \"description\": \"\",\\\n\\\n \"risk\": \"low\",\\\n\\\n \"categories\": [\\\n\\\n {\\\n\\\n \"name\": \"spam\",\\\n\\\n \"risk\": \"low\",\\\n\\\n \"subcategories\": [\\\n\\\n {\\\n\\\n \"name\": \"phishing\",\\\n\\\n \"risk\": \"low\",\\\n\\\n \"augmentations\": [\\\n\\\n {\\\n\\\n \"name\": \"body\",\\\n\\\n \"risk\": \"negligible\"\\\n\\\n }\\\n\\\n ]\\\n\\\n }\\\n\\\n ]\\\n\\\n }\\\n\\\n ]\\\n\\\n }\\\n\\\n },\\\n\\\n \"attachments\": true,\\\n\\\n \"messageInfo\": \"Expired in queue - rejected by housekeeping\",\\\n\\\n \"subject\": \"Exclusive Offer - You don't want to miss this!\",\\\n\\\n \"detectionLevel\": \"moderate\",\\\n\\\n \"heldGroup\": \"IT Staff Global\",\\\n\\\n \"operator\": \"admin@domain.tld\",\\\n\\\n \"fromEnv\": {\\\n\\\n \"emailAddress\": \"user@domain.tld\",\\\n\\\n \"displayableName\": \"FirstName LastName\"\\\n\\\n },\\\n\\\n \"rejectReason\": \"Message contains undesirable content\",\\\n\\\n \"route\": \"inbound\",\\\n\\\n \"size\": 5043,\\\n\\\n \"heldReason\": \"High-Confidence Impersonation Protection\",\\\n\\\n \"spamScore\": 12,\\\n\\\n \"id\": \"eNpVj21LhEAUhf_LfN2VnRl1RpclCN...\",\\\n\\\n \"to\": [\\\n\\\n {\\\n\\\n \"emailAddress\": \"user@domain.tld\",\\\n\\\n \"displayableName\": \"FirstName LastName\"\\\n\\\n }\\\n\\\n ],\\\n\\\n \"released\": \"2015-11-25T14:49:18+00:00\",\\\n\\\n \"fromHdr\": {\\\n\\\n \"emailAddress\": \"user@domain.tld\",\\\n\\\n \"displayableName\": \"FirstName LastName\"\\\n\\\n },\\\n\\\n \"status\": \"released\",\\\n\\\n \"policy\": \"Moderate Spam Detection\"\\\n\\\n }\\\n\\\n ]\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n##### meta\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| status | Number | The function level status of the request. |\n| pagination | Object | An object containing paging information. |\n\n##### Pagination Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| pageSize | Number | The number of results requested. |\n| next | String | A pageToken value that can be used to request the next page of results. Only returned if there are more results to return. |\n| previous | String | A pageToken value that can be used to request the previous page of results. Only returned if there is a previous page. |\n\n##### data\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| heldReleaseLogs | Array of released Objects | The resulting messages that match the search and filter queries. |\n\n##### Released Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| spamProcessingDetail | Spam Processing Detail Object | Object containing the spam, sender validation and managed sender scan results. |\n| attachments | Boolean | Indicates whether the message contains attachments. |\n| messageInfo | String | Additional information around the release reason. |\n| subject | String | The released message's subject line. |\n| detectionLevel | String | Spam detection level, if held by a spam policy. Possible values are: relaxed, moderate, aggressive, cluster or whitelisted\\_cluster |\n| heldGroup | String | The recipient group of the held message, if message was sent to a group. |\n| operator | String | Email address of the user that released the message. |\n| fromEnv | Email Address Object | Envelope from address information |\n| rejectReason | String | Detail on the reason a message was rejected, if message was rejected. |\n| route | String | Message direction. Possible values are: inbound or outbound. |\n| size | Number | Total size of the message, in bytes. |\n| heldReason | String | Detail around the reason the message was initially held. If held by a specific policy definition, this will be the name of the policy definition that triggered the message to be held. |\n| spamScore | Number | The message spam score, based on the applied spam scanning policy definition. |\n| id | String | The Mimecast secure ID of the specific message release log. |\n| to | Array of Email Address Objects | Envelope from address information |\n| released | Date String | Timestamp of the message release action in ISO 8601 format. |\n| fromHdr | Email Address Object | Header from address information |\n| status | String | Status of the message. Possible values are released or rejected. |\n| policy | String | Name of the policy definition that triggered the message to be held. |\n\n##### Spam Processing Detail Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| greyEmail | Boolean | Indicates with the spam was classified as graymail or bulk. Note that this API uses graymail and greymail interchangeably. |\n| permittedSender | Information Object | Indicates if the sender has been permitted by policy. |\n| managedSender | Information Object | Indicates if the sender has been permitted by a Managed Sender entry. |\n| dkim | Information Object | Indicates if the message passed DKIM checks. |\n| spf | Information Object | Indicates if the message passed SPF checks. |\n| rbl | Information Object | Indicates if the message passed RBL checks. |\n| dmarc | Information Object | Indicates if the message passed DMARC checks. |\n| spamVerdict | Spam Verdict Object | Information about the spam scanning results. |\n\n##### Email Address Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| emailAddress | String | The routable email address of the user |\n| displayableName | String | Display name of the user address. If none exists, this field will be empty. |\n\n##### Spam Verdict Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| decision | String | Indicating what the ultimate verdict was for the message. |\n| description | String | Description of the spam verdict decision. |\n| risk | String | Identified risk level within the spam detection. Possible values are: negligible, low, high. |\n| categories | Array of Category Objects | Spam detection type categories |\n\n##### Spam Category Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| name | String | Name of the scanning category. Possible values are spam, phishing or graymail. Note that this API uses graymail and greymail interchangeably. |\n| risk | String | Identified risk level within the category detection. Possible values are: negligible, low, high. |\n| subcategories | Array of Spam Subcategory Objects | Additional category information under the high-level category. |\n\n##### Spam Subcategory Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| name | String | Name of the scanning subcategory. |\n| risk | String | Identified risk level within the subcategory detection. Possible values are: negligible, low, high. |\n| augmentations | Array of Augmentation Objects | Component of the message where this subcategory was identified. |\n\n##### Augmentation Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| name | String | Name of the message component. |\n| risk | String | Identified risk level within the component scanning. Possible values are: negligible, low, high. |\n\n##### Information Object\n\n| **Field** | **Type** | **Description** |\n| --- | --- | --- |\n| allow | Boolean | Indicates if this check was performed. |\n| info | String | Details about the check result. |\n\n#### Sample Code\n\nSample code is provided to demonstrate how to use the API and is not representative of a production application. To use the sample code; complete the required variables as described, populate the desired values in the request body, and execute in your favorite IDE.  Please see the [Global Base URL's](https://integrations.mimecast.com/EPiServer/CMS/Content/c7dde7d8-d351-4248-95a5-13528930efc1_developer/documentation/global-base-urls,,32727/?epieditmode=False) page to find the correct base URL to use for your account.\n\nHTTPPythonC#PowerShellJava\n\n```\n\nPOST {base_url}/api/gateway/get-held-release-logs\n\nAuthorization: MC {accesskKey}:{Base64 encoded signed Data To Sign}\n\nx-mc-date: {dateTime}\n\nx-mc-req-id: {unique id}\n\nx-mc-app-id: {applicationId}\n\nContent-Type: application/json\n\nAccept: application/json\n\n\n\n{\n\n \"meta\": {\n\n \"pagination\": {\n\n \"pageSize\": 25,\n\n \"pageToken\": \"String\"\n\n }\n\n },\n\n \"data\": [\\\n\\\n {\\\n\\\n \"searchBy\": {\\\n\\\n \"fieldName\": \"heldReason\",\\\n\\\n \"value\": \"High-Confidence Impersonation Protection\"\\\n\\\n },\\\n\\\n \"filterBy\": [\\\n\\\n {\\\n\\\n \"fieldName\": \"route\",\\\n\\\n \"value\": \"inbound\"\\\n\\\n }\\\n\\\n ],\\\n\\\n \"start\": \"2015-11-16T14:49:18+00:00\",\\\n\\\n \"end\": \"2015-11-25T14:49:18+00:00\"\\\n\\\n }\\\n\\\n ]\n\n}\n```\n\n```\n\nimport base64\n\nimport hashlib\n\nimport hmac\n\nimport uuid\n\nimport datetime\n\nimport requests\n\n\n\n# Setup required variables\n\nbase_url = \"https://xx-api.mimecast.com\"\n\nuri = \"/api/gateway/get-held-release-logs\"\n\nurl = base_url + uri\n\naccess_key = \"YOUR ACCESS KEY\"\n\nsecret_key = \"YOUR SECRET KEY\"\n\napp_id = \"YOUR APPLICATION ID\"\n\napp_key = \"YOUR APPLICATION KEY\"\n\n\n\n# Generate request header values\n\nrequest_id = str(uuid.uuid4())\n\nhdr_date = datetime.datetime.utcnow().strftime(\"%a, %d %b %Y %H:%M:%S\") + \" UTC\"\n\n\n\n# DataToSign is used in hmac_sha1\n\ndataToSign = ':'.join([hdr_date, request_id, uri, app_key])\n\n\n\n# Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\nhmac_sha1 = hmac.new(base64.b64decode(secret_key), dataToSign.encode(), digestmod=hashlib.sha1).digest()\n\n\n\n# Use the HMAC SHA1 value to sign the hdrDate + \":\" requestId + \":\" + URI + \":\" + appkey\n\nsig = base64.b64encode(hmac_sha1).rstrip()\n\n\n\n# Create request headers\n\nheaders = {\n\n 'Authorization': 'MC ' + access_key + ':' + sig.decode(),\n\n 'x-mc-app-id': app_id,\n\n 'x-mc-date': hdr_date,\n\n 'x-mc-req-id': request_id,\n\n 'Content-Type': 'application/json'\n\n}\n\n\n\npayload = {\n\n 'meta': {\n\n 'pagination': {\n\n 'pageSize': 25,\n\n 'pageToken': 'String'\n\n }\n\n },\n\n 'data': [\\\n\\\n {\\\n\\\n 'searchBy': {\\\n\\\n 'fieldName': 'heldReason',\\\n\\\n 'value': 'High-Confidence Impersonation Protection'\\\n\\\n },\\\n\\\n 'filterBy': [\\\n\\\n {\\\n\\\n 'fieldName': 'route',\\\n\\\n 'value': 'inbound'\\\n\\\n }\\\n\\\n ],\\\n\\\n 'start': '2015-11-16T14:49:18+00:00',\\\n\\\n 'end': '2015-11-25T14:49:18+00:00'\\\n\\\n }\\\n\\\n ]\n\n}\n\n\n\nr = requests.post(url=url, headers=headers, data=str(payload))\n\n\n\nprint(r.text)\n```\n\n```\n\nstatic void Main(string[] args)\n\n {\n\n //Setup required variables\n\n string baseUrl = \"https://xx-api.mimecast.com\";\n\n string uri = \"/api/gateway/get-held-release-logs\";\n\n string accessKey = \"YOUR ACCESS KEY\";\n\n string secretKey = \"YOUR SECRET KEY\";\n\n string appId = \"YOUR APPLICATION ID\";\n\n string appKey = \"YOUR APPLICATION KEY\";\n\n\n\n //Generate request header values\n\n string hdrDate = System.DateTime.Now.ToUniversalTime().ToString(\"R\");\n\n string requestId = System.Guid.NewGuid().ToString();\n\n\n\n //Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\n System.Security.Cryptography.HMAC h = new System.Security.Cryptography.HMACSHA1(System.Convert.FromBase64String(secretKey));\n\n\n\n //Use the HMAC SHA1 value to sign the hdrDate + \":\" requestId + \":\" + URI + \":\" + appkey\n\n byte[] hash = h.ComputeHash(System.Text.Encoding.Default.GetBytes(hdrDate + \":\" + requestId + \":\" + uri + \":\" + appKey));\n\n\n\n //Build the signature to be included in the Authorization header in your request\n\n string signature = \"MC \" + accessKey + \":\" + System.Convert.ToBase64String(hash);\n\n\n\n //Build Request\n\n System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(baseUrl + uri);\n\n request.Method = \"POST\";\n\n request.ContentType = \"application/json\";\n\n\n\n //Add Headers\n\n request.Headers[System.Net.HttpRequestHeader.Authorization] = signature;\n\n request.Headers.Add(\"x-mc-date\", hdrDate);\n\n request.Headers.Add(\"x-mc-req-id\", requestId);\n\n request.Headers.Add(\"x-mc-app-id\", appId);\n\n\n\n //Add request body\n\n //Create and write data to stream\n\n string postData = @\"{\n\n \"\"meta\"\": {\n\n \"\"pagination\"\": {\n\n \"\"pageSize\"\": 25,\n\n \"\"pageToken\"\": \"\"String\"\"\n\n }\n\n },\n\n \"\"data\"\": [\\\n\\\n {\\\n\\\n \"\"searchBy\"\": {\\\n\\\n \"\"fieldName\"\": \"\"heldReason\"\",\\\n\\\n \"\"value\"\": \"\"High-Confidence Impersonation Protection\"\"\\\n\\\n },\\\n\\\n \"\"filterBy\"\": [\\\n\\\n {\\\n\\\n \"\"fieldName\"\": \"\"route\"\",\\\n\\\n \"\"value\"\": \"\"inbound\"\"\\\n\\\n }\\\n\\\n ],\\\n\\\n \"\"start\"\": \"\"2015-11-16T14:49:18+00:00\"\",\\\n\\\n \"\"end\"\": \"\"2015-11-25T14:49:18+00:00\"\"\\\n\\\n }\\\n\\\n ]\n\n}\";\n\n\n\n byte[] payload = System.Text.Encoding.UTF8.GetBytes(postData);\n\n\n\n System.IO.Stream stream = request.GetRequestStream();\n\n stream.Write(payload, 0, payload.Length);\n\n stream.Close();\n\n\n\n //Send Request\n\n System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse();\n\n\n\n //Output response to console\n\n System.IO.StreamReader reader = new System.IO.StreamReader(response.GetResponseStream());\n\n string responseBody = \"\";\n\n string temp = null;\n\n while ((temp = reader.ReadLine()) != null)\n\n {\n\n responseBody += temp;\n\n };\n\n System.Console.WriteLine(responseBody);\n\n System.Console.ReadLine();\n\n }\n```\n\n```\n\n#Setup required variables\n\n$baseUrl = \"https://xx-api.mimecast.com\"\n\n$uri = \"/api/gateway/get-held-release-logs\"\n\n$url = $baseUrl + $uri\n\n$accessKey = \"YOUR ACCESS KEY\"\n\n$secretKey = \"YOUR SECRET KEY\"\n\n$appId = \"YOUR APPLICATION ID\"\n\n$appKey = \"YOUR APPLICATION KEY\"\n\n\n\n#Generate request header values\n\n$hdrDate = (Get-Date).ToUniversalTime().ToString(\"ddd, dd MMM yyyy HH:mm:ss UTC\")\n\n$requestId = [guid]::NewGuid().guid\n\n\n\n#Create the HMAC SHA1 of the Base64 decoded secret key for the Authorization header\n\n$sha = New-Object System.Security.Cryptography.HMACSHA1\n\n$sha.key = [Convert]::FromBase64String($secretKey)\n\n$sig = $sha.ComputeHash([Text.Encoding]::UTF8.GetBytes($hdrDate + \":\" + $requestId + \":\" + $uri + \":\" + $appKey))\n\n$sig = [Convert]::ToBase64String($sig)\n\n\n\n#Create Headers\n\n$headers = @{\"Authorization\" = \"MC \" + $accessKey + \":\" + $sig;\n\n \"x-mc-date\" = $hdrDate;\n\n \"x-mc-app-id\" = $appId;\n\n \"x-mc-req-id\" = $requestId;\n\n \"Content-Type\" = \"application/json\"}\n\n\n\n#Create post body\n\n$postBody = \"{\n\n \"\"meta\"\": {\n\n \"\"pagination\"\": {\n\n \"\"pageSize\"\": 25,\n\n \"\"pageToken\"\": \"\"String\"\"\n\n }\n\n },\n\n \"\"data\"\": [\\\n\\\n {\\\n\\\n \"\"searchBy\"\": {\\\n\\\n \"\"fieldName\"\": \"\"heldReason\"\",\\\n\\\n \"\"value\"\": \"\"High-Confidence Impersonation Protection\"\"\\\n\\\n },\\\n\\\n \"\"filterBy\"\": [\\\n\\\n {\\\n\\\n \"\"fieldName\"\": \"\"route\"\",\\\n\\\n \"\"value\"\": \"\"inbound\"\"\\\n\\\n }\\\n\\\n ],\\\n\\\n \"\"start\"\": \"\"2015-11-16T14:49:18+00:00\"\",\\\n\\\n \"\"end\"\": \"\"2015-11-25T14:49:18+00:00\"\"\\\n\\\n }\\\n\\\n ]\n\n}\"\n\n\n\n#Send Request\n\n$response = Invoke-RestMethod -Method Post -Headers $headers -Body $postBody -Uri $url\n\n\n\n#Print the response\n\n$response\n```\n\n```\n\npublic static void main(String[] args) throws java.io.IOException, java.security.NoSuchAlgorithmException, java.security.InvalidKeyException {\n\n\n\n //set up variables for request\n\n String baseUrl = \"https://xx-api.mimecast.com\";\n\n String uri = \"/api/gateway/get-held-release-logs\";\n\n String url = \"https://\" + baseUrl + uri;\n\n String accessKey = \"YOUR ACCESS KEY\";\n\n String secretKey = \"YOUR SECRET KEY\";\n\n String appId = \"YOUR APPLICATION ID\";\n\n String appKey = \"YOUR APPLICATION KEY\";\n\n\n\n //create URL object\n\n java.net.URL obj = new java.net.URL(url);\n\n\n\n // set guid for x-mc-req-id header\n\n String guid = java.util.UUID.randomUUID().toString();\n\n\n\n // set date for x-mc-date header\n\n java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(\"EEE, d MMM yyyy HH:mm:ss z\");\n\n sdf.setTimeZone(java.util.TimeZone.getTimeZone(\"UTC\"));\n\n String date = sdf.format(new java.util.Date());\n\n\n\n //create signature for the Authorization header\n\n String dataToSign = date + \":\" + guid + \":\" + uri + \":\" + appKey;\n\n String hmacSHA1 = \"HmacSHA1\";\n\n javax.crypto.spec.SecretKeySpec signingKey = new javax.crypto.spec.SecretKeySpec(org.apache.commons.codec.binary.Base64.decodeBase64(secretKey.getBytes()), hmacSHA1);\n\n javax.crypto.Mac mac = javax.crypto.Mac.getInstance(hmacSHA1);\n\n mac.init(signingKey);\n\n String sig = new String(org.apache.commons.codec.binary.Base64.encodeBase64(mac.doFinal(dataToSign.getBytes())));\n\n\n\n // create request object\n\n javax.net.ssl.HttpsURLConnection con = (javax.net.ssl.HttpsURLConnection) obj.openConnection();\n\n\n\n //set request type to POST\n\n con.setRequestMethod(\"POST\");\n\n con.setDoOutput(true);\n\n\n\n //add reuqest headers\n\n con.setRequestProperty(\"Authorization\", \"MC \" + accessKey + \":\" + sig);\n\n con.setRequestProperty(\"x-mc-req-id\", guid);\n\n con.setRequestProperty(\"x-mc-app-id\", appId);\n\n con.setRequestProperty(\"x-mc-date\", date);\n\n con.setRequestProperty(\"Content-Type\", \"application/json\");\n\n con.setRequestProperty(\"Accept\", \"application/json\");\n\n\n\n //Add post body to the request\n\n String postBody = \"{\\n\" +\n\n\" \\\"meta\\\": {\\n\" +\n\n\" \\\"pagination\\\": {\\n\" +\n\n\" \\\"pageSize\\\": 25,\\n\" +\n\n\" \\\"pageToken\\\": \\\"String\\\"\\n\" +\n\n\" }\\n\" +\n\n\" },\\n\" +\n\n\" \\\"data\\\": [\\n\" +\\\n\\\n\" {\\n\" +\\\n\\\n\" \\\"searchBy\\\": {\\n\" +\\\n\\\n\" \\\"fieldName\\\": \\\"heldReason\\\",\\n\" +\\\n\\\n\" \\\"value\\\": \\\"High-Confidence Impersonation Protection\\\"\\n\" +\\\n\\\n\" },\\n\" +\\\n\\\n\" \\\"filterBy\\\": [\\n\" +\\\n\\\n\" {\\n\" +\\\n\\\n\" \\\"fieldName\\\": \\\"route\\\",\\n\" +\\\n\\\n\" \\\"value\\\": \\\"inbound\\\"\\n\" +\\\n\\\n\" }\\n\" +\\\n\\\n\" ],\\n\" +\\\n\\\n\" \\\"start\\\": \\\"2015-11-16T14:49:18+00:00\\\",\\n\" +\\\n\\\n\" \\\"end\\\": \\\"2015-11-25T14:49:18+00:00\\\"\\n\" +\\\n\\\n\" }\\n\" +\\\n\\\n\" ]\\n\" +\n\n\"}\";\n\n java.io.OutputStream os = con.getOutputStream();\n\n os.write(postBody.getBytes(\"UTF-8\"));\n\n os.close();\n\n\n\n //process response\n\n java.io.BufferedReader in = new java.io.BufferedReader(\n\n new java.io.InputStreamReader(con.getInputStream()));\n\n String inputLine;\n\n StringBuffer response = new StringBuffer();\n\n\n\n while ((inputLine = in.readLine()) != null) {\n\n response.append(inputLine);\n\n }\n\n in.close();\n\n\n\n //return result\n\n java.lang.System.out.println(response.toString());\n\n }\n```\n\n[Back to Top](https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/#)","metadata":{"og:site_name":"Mimecast","ogSiteName":"Mimecast","ogTitle":"Message Release Logs","title":"Message Release Logs | Mimecast","ogUrl":"https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/","og:url":"https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/","ogDescription":"Get message release logs","VIcurrentDateTime":["639106058916686805>","639106058916686896"],"robots":"index, follow","viewport":"width=device-width, initial-scale=1, shrink-to-fit=no","og:description":"Get message release logs","language":"en","theme-color":"#ffffff","description":"Get message release logs","author":"mimecast","og:title":"Message Release Logs","twitter:card":"summary_large_image","VirtualFolder":["\\","/"],"favicon":"https://integrations.mimecast.com/sc-static/img/favicons/icons_m_192x192.png","scrapeId":"019d46c9-4df1-70ca-9269-d6b477c92e11","sourceURL":"https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/","url":"https://integrations.mimecast.com/documentation/endpoint-reference/logs-and-statistics/get-message-release-logs/","statusCode":200,"contentType":"text/html; charset=utf-8","timezone":"America/New_York","proxyUsed":"basic","cacheState":"miss","indexId":"c25504d9-72e8-47cb-b469-aefd9a61e7c0","creditsUsed":1}}]}}