Hi,
For the SCEP payload's SAN, we are able to provide an array of strings for each key (dNSName, ntPrincipalName).
<dict>
<key>ntPrincipalName</key>
<string>email</string>
<key>rfc822Name</key>
<array>
<string>email</string>
<string>email2</string>
</array>
<key>dNSName</key>
<array>
<string>test.com</string>
<string>example.com</string>
</array>
</dict>
But the ACMECertificate payload is not accepting this and instead, returns the below error.
The field “rfc822Name” is invalid.
The field “dNSName” is invalid.
Does the ACMECertificate payload support multiple SAN values for each key?
Thanks for your time!