/ssl/get_csr


GET https://api.sitehost.nz/1.0/ssl/get_csr.json

Returns the CSR and relevant details for the specified certificate.

Query Parameters

ParameterTypeRequiredDescription
client_idintegerYesThe ID of the client that the certificate belongs to.Example: 1
cert_idintegerYesThe ID of the certificate you want to retrieve.Example: 1

Code Samples

JavaScript PHP Rails Python
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.sitehost.nz/1.0/ssl/get_csr.json?apikey=your_key_here&client_id=1&cert_id=1", false);

xmlHttp.send();

var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.0/ssl/get_csr.json?apikey=your_key_here&client_id=1&cert_id=1");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
require 'net/http'
require 'uri'

uri = URI.parse("https://api.sitehost.nz/1.0/ssl/get_csr.json?apikey=your_key_here&client_id=1&cert_id=1")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)

response = http.request(request)
import requests

uri = 'https://api.sitehost.nz/1.0/ssl/get_csr.json?apikey=your_key_here&client_id=1&cert_id=1'

response = requests.get(uri)

Response

200:

application/json
{
  "return": {
    "csr": {
      "csr_details": {
        "countryName": "NZ",
        "stateOrProvinceName": "Auckland",
        "organizationName": "Example Inc",
        "commonName": "www.example.net"
      },
      "csr": "csr content here"
    }
  },
  "msg": "Successful.",
  "status": true,
  "time": 27.29
}