title | description | author | ms.localizationpriority | ms.subservice | doc_type |
---|---|---|---|---|---|
Create onPremEncryptedPayload |
Create a new onPremEncryptedPayload object. |
jaiprakashmb |
medium |
intune |
apiPageType |
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Create a new onPremEncryptedPayload object.
[!INCLUDE national-cloud-support]
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementConfiguration.ReadWrite.All |
POST /onPremEncryptedPayloads
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Accept | application/json |
In the request body, supply a JSON representation for the onPremEncryptedPayload object.
The following table shows the properties that are required when you create the onPremEncryptedPayload.
Property | Type | Description |
---|---|---|
tenantId | Guid | |
userId | Guid | |
deviceId | Guid | |
payloadId | Guid | |
deviceKeyThumbprint | String | |
cert1PayloadUUID | String | |
cert2PayloadUUID | String | |
cert3PayloadUUID | String | |
plistTemplate | String | |
encryptedBlob | Binary | |
payloadVersion | Int32 | |
status | Int32 | |
createdTime | DateTimeOffset | |
lastModifiedTime | DateTimeOffset | |
eTag | String | |
isDeleted | Boolean |
If successful, this method returns a 201 Created
response code and a onPremEncryptedPayload object in the response body.
Here is an example of the request.
POST https://graph.microsoft.com/beta/onPremEncryptedPayloads
Content-type: application/json
Content-length: 781
{
"@odata.type": "#microsoft.graph.onPremEncryptedPayload",
"tenantId": "f9882bcd-2bcd-f988-cd2b-88f9cd2b88f9",
"userId": "a991071c-071c-a991-1c07-91a91c0791a9",
"deviceId": "6de0af45-af45-6de0-45af-e06d45afe06d",
"payloadId": "f12f6c03-6c03-f12f-036c-2ff1036c2ff1",
"deviceKeyThumbprint": "Device Key Thumbprint value",
"cert1PayloadUUID": "Cert1Payload UUID value",
"cert2PayloadUUID": "Cert2Payload UUID value",
"cert3PayloadUUID": "Cert3Payload UUID value",
"plistTemplate": "Plist Template value",
"encryptedBlob": "ZW5jcnlwdGVkQmxvYg==",
"payloadVersion": 14,
"status": 6,
"createdTime": "2017-01-01T00:03:18.9597073-08:00",
"lastModifiedTime": "2017-01-01T00:03:18.5958204-08:00",
"eTag": "ETag value",
"isDeleted": true
}
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 781
{
"@odata.type": "#microsoft.graph.onPremEncryptedPayload",
"tenantId": "f9882bcd-2bcd-f988-cd2b-88f9cd2b88f9",
"userId": "a991071c-071c-a991-1c07-91a91c0791a9",
"deviceId": "6de0af45-af45-6de0-45af-e06d45afe06d",
"payloadId": "f12f6c03-6c03-f12f-036c-2ff1036c2ff1",
"deviceKeyThumbprint": "Device Key Thumbprint value",
"cert1PayloadUUID": "Cert1Payload UUID value",
"cert2PayloadUUID": "Cert2Payload UUID value",
"cert3PayloadUUID": "Cert3Payload UUID value",
"plistTemplate": "Plist Template value",
"encryptedBlob": "ZW5jcnlwdGVkQmxvYg==",
"payloadVersion": 14,
"status": 6,
"createdTime": "2017-01-01T00:03:18.9597073-08:00",
"lastModifiedTime": "2017-01-01T00:03:18.5958204-08:00",
"eTag": "ETag value",
"isDeleted": true
}