API Format hostNames

From Openprovider API documentation

(Difference between revisions)
Jump to: navigation, search
WikiSysop (Talk | contribs)
(Created page with '==Format specification > hostNames== Array of hostnames. This parameter is optional, and only allowed in combination with a multi domain SSL certificate. If passed, the hostnames…')

Current revision as of 12:13, 30 September 2011

Contents

Format specification > hostNames

Array of hostnames. This parameter is optional, and only allowed in combination with a multi domain SSL certificate. If passed, the hostnames in this parameter will override any hostnames in the CSR, except for the common name.

Examples

Using PHP class

array(
  'hostname1',
  'hostname2',
  'www.domain.com',
  'www.domain.net',
);

Raw XML

<hostNames>
  <array>
    <item>hostname1</item>
    <item>hostname2</item>
    <item>www.domain.com</item>
    <item>www.domain.net</item>
  </array>
</hostNames>
Views
Personal tools