When we try to deploy a cert via Postman curl command, we could not because of the organization field containing "&" in Company Name & Services. This impacts our ability to deploy via Jenkins/Ansible
Release :
Bad Request caused when not encoding the & when posting to restman
The & needs to be encoded change the subject:
From
<l7:SubjectDn>CN=UserID, OU=support, O=Company Name & Services, L=HomeTown, ST=Maryland, C=US</l7:SubjectDn>
TO
<l7:SubjectDn>CN=UserID, OU=support, O=Company Name & Services, L=HomeTown, ST=Maryland, C=US</l7:SubjectDn>