Skip to content
URL:
https://<root>/security/sslCertificates/<sslCertificate>/generateCsr
Methods:
GET
Version Introduced:
10.3

Access requirements

Required privileges

The Portal Administrator API requires privilege-based access. An administrator must be assigned a specific user privilege, or role, to access any given endpoint. Listed below are the user privileges or roles an administrator can be assigned that provides access to this endpoint. If multiple privileges are listed, only one needs to be assigned to gain access.


Tokens

This API requires token-based authentication. A token is automatically generated for administrators who sign in to the Portal Administrator API directory's HTML interface. Tokens generated in this way are stored for the entirety of the session.

Those accessing the API directory outside of the HTML interface will need to acquire a session token from the generateToken operation in the Portal Directory API. For security reasons, all POST requests made to the Portal Administrator API must include a token in the request body.


Learn how to generate a token

Description

The generateCsr operation generates a certificate signing request (CSR) for a self-signed certificate. A CSR is required by a CA to create a digitally signed version of your certificate.

Request parameters

ParameterDetails

f

The response format. The default response value is html.

Values: html | json | pjson

Example usage

The following is a sample GET request for the generateCsr operation:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/portaladmin/security/sslCertificates/myCert/generateCsr?f=pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
{
  "certificateSigningRequest": 	"<csr>"
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
{"certificateSigningRequest": 	"-----BEGIN NEW CERTIFICATE REQUEST-----\r\n
 MIIBeDCB1gIBADA2MR3wHAYDVQQKExVTZWxmU4lnbmVkQ5VydGlmaWNhdGUxFzAVBgNVBAMTDkdS\r\n
 SUQyLkVTUkkuQ09NMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDH9jNGP/ZPn75GIcs/uFi7\r\n
 Gqug1zutmsIVo9viUCLu+Wgd+lhrSuab3l0ar3QwM9CKp8AU01VxKMsSVcU6FjdgTmuf42cOhTEO\r\n
 8WOXqgW5PynJONaCq+9oRVCF3+XeTIHD78IN3lQvckRH7FI7iMyD+jb/P3P1xKRDhM/3ikMfJwID\r\n
 AQABoAAwDQYJKoZIhvcNAQEFBQADgYEAC29mmkXw+KSeDFlRW7Jq9EEUGmBWvKqAv61qg9UQ0JD8\r\n
 hroCMTKoANj5iWqfwW/hMFWkDcKdNqTziVqyZcs3HssU89+QCTmpHkuuM8jxrEf/iWLQh5Dr4Srv\r\n
 2hf4Bf0rIC4k8XgVs28MeOzuROusdL/1g+jo83SzP2FacteNNb0=\r\n
 -----END NEW CERTIFICATE REQUEST-----\r\n"
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.