GET v1/core/accounts/{accId}/mdm/apple/apns/csr

Request an Apple MDM Account CSR (signed by a vendor cert). The action of requesting this pulls the provisioned CSR for this account and returns the CSR encapsulated in a plist with the vendor signature.

Request Information

Parameters

NameDescriptionAdditional information
accId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Success": true,
  "Data": {
    "AccountID": 1,
    "CSR": "sample string 2"
  },
  "ErrorCode": 2,
  "ErrorDescription": "sample string 3",
  "Meta": "sample string 4"
}

text/javascript

Sample:
{"Success":true,"Data":{"AccountID":1,"CSR":"sample string 2"},"ErrorCode":2,"ErrorDescription":"sample string 3","Meta":"sample string 4"}

application/xml, text/xml

Sample:
<PBNBReturnOfAppleAPNSCSRCA1DLPoZ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pbnb_models">
  <Data>
    <AccountID>1</AccountID>
    <CSR>sample string 2</CSR>
  </Data>
  <ErrorCode>2</ErrorCode>
  <ErrorDescription>sample string 3</ErrorDescription>
  <Meta>sample string 4</Meta>
  <Success>true</Success>
</PBNBReturnOfAppleAPNSCSRCA1DLPoZ>

application/bson

Sample:
�SuccessData-AccountIDCSRsample string 2ErrorCodeErrorDescriptionsample string 3Metasample string 4