Skip to main content

Product

Attributes

NameTypeDescription
namestringProduct name
authority_namestringAuthority name
can_be_orderedbooleanCan this product be ordered via API
allowed_durationsarrayAllowed order durations
allowed_encryptionsarrayAllowed certificate encryptions
allowed_encryptions.algorithmstringType of encryption
allowed_encryptions.key_sizearrayAllowed key sizes for this type of encryption
allowed_encryptions.hasharrayAllowed signature hashes for this type of encryption
allow_wildcardbooleanCan wildcard common names be ordered in this product
allowed_sansarrayType of SANs allowed with this product. See Glossary - SAN type
min_sansintegerMinimum number of SANs
max_sansintegerMaximum number of SANs
allowed_validation_methodsarraySee Glossary - Domain Control Validation Method
allowed_web_serversarraySee Glossary - Web Servers

Relationships

(None)

Sample

{
"data": {
"type": "product",
"id": "1",
"links": {
"self": "https://api.nameshield.net/ssl/v2/products/1"
},
"attributes": {
"name": "Digicert Secure Site Pro EV",
"authority_name": "Digicert",
"can_be_ordered": true,
"accept_reissue": true,
"allowed_durations": [
"1 year"
],
"allowed_encryptions": [
{
"algorithm": "RSA",
"key_size": [
2048,
4096
],
"hash": [
"SHA-256",
"SHA-384",
"SHA-512"
]
},
{
"algorithm": "ECC",
"key_size": [
256,
384
],
"hash": [
"SHA-256",
"SHA-384",
"SHA-512"
]
}
],
"allow_wildcard": false,
"allowed_sans": [
"fqdn"
],
"min_sans": 0,
"max_sans": 249,
"allowed_validation_methods": [
"VALIDATE_DNS",
"VALIDATE_EMAIL_WHOIS",
"VALIDATE_EMAIL_ALIAS"
],
"allowed_web_servers": [
"iis",
"others"
]
}
}
}