Product
Attributes
| Name | Type | Description |
|---|---|---|
| name | string | Product name |
| authority_name | string | Authority name |
| can_be_ordered | boolean | Can this product be ordered via API |
| allowed_durations | array | Allowed order durations |
| allowed_encryptions | array | Allowed certificate encryptions |
| allowed_encryptions.algorithm | string | Type of encryption |
| allowed_encryptions.key_size | array | Allowed key sizes for this type of encryption |
| allowed_encryptions.hash | array | Allowed signature hashes for this type of encryption |
| allow_wildcard | boolean | Can wildcard common names be ordered in this product |
| allowed_sans | array | Type of SANs allowed with this product. See Glossary - SAN type |
| min_sans | integer | Minimum number of SANs |
| max_sans | integer | Maximum number of SANs |
| allowed_validation_methods | array | See Glossary - Domain Control Validation Method |
| allowed_web_servers | array | See 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"
]
}
}
}