Create enterpriseCodeSigningCertificate
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 enterpriseCodeSigningCertificate object.
Permissions
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) | DeviceManagementApps.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementApps.ReadWrite.All |
HTTP Request
POST /deviceAppManagement/enterpriseCodeSigningCertificates
Request headers
Header | Value |
---|---|
Authorization | Bearer <token> Required. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the enterpriseCodeSigningCertificate object.
The following table shows the properties that are required when you create the enterpriseCodeSigningCertificate.
Property | Type | Description |
---|---|---|
id | String | The key of the entity. |
content | Binary | The Windows Enterprise Code-Signing Certificate in the raw data format. |
status | certificateStatus | The Certificate Status Provisioned or not Provisioned. Possible values are: notProvisioned , provisioned . |
subjectName | String | The Subject Name for the cert. |
subject | String | The Subject Value for the cert. |
issuerName | String | The Issuer Name for the cert. |
issuer | String | The Issuer value for the cert. |
expirationDateTime | DateTimeOffset | The Cert Expiration Date. |
uploadDateTime | DateTimeOffset | The date time of CodeSigning Cert when it is uploaded. |
Response
If successful, this method returns a 201 Created
response code and a enterpriseCodeSigningCertificate object in the response body.
Example
Request
Here is an example of the request.
POST https://graph.microsoft.com/beta/deviceAppManagement/enterpriseCodeSigningCertificates
Content-type: application/json
Content-length: 390
{
"@odata.type": "#microsoft.graph.enterpriseCodeSigningCertificate",
"content": "Y29udGVudA==",
"status": "provisioned",
"subjectName": "Subject Name value",
"subject": "Subject value",
"issuerName": "Issuer Name value",
"issuer": "Issuer value",
"expirationDateTime": "2016-12-31T23:57:57.2481234-08:00",
"uploadDateTime": "2016-12-31T23:58:46.5747426-08:00"
}
Response
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: 439
{
"@odata.type": "#microsoft.graph.enterpriseCodeSigningCertificate",
"id": "b20d3703-3703-b20d-0337-0db203370db2",
"content": "Y29udGVudA==",
"status": "provisioned",
"subjectName": "Subject Name value",
"subject": "Subject value",
"issuerName": "Issuer Name value",
"issuer": "Issuer value",
"expirationDateTime": "2016-12-31T23:57:57.2481234-08:00",
"uploadDateTime": "2016-12-31T23:58:46.5747426-08:00"
}
Feedback
Submit and view feedback for