decodeCSR
Decode a certificate signing request.
decodeCSR(
input: DecodeCSRInput
): CSRDecoded!
Example
- Query
- Variables
- Response
mutation ($input: DecodeCSRInput) {
decodeCSR(input: $input) {
altNames
commonName
country
emailAddress
locality
organization
organizationUnit
state
}
}
{
"input": {
"csr": "csr"
}
}
{
"data": {
"decodeCSR": {
"altNames": [
"altNames"
],
"commonName": "commonName",
"country": "Canada",
"emailAddress": "emailAddress",
"locality": "locality",
"organization": "organization",
"organizationUnit": "organizationUnit",
"state": "Quebec"
}
}
}
Arguments
decodeCSR.input ● DecodeCSRInput input common
The CSR string to decode.
Type
CSRDecoded object common
A decoded certificate signing request.