site_seal
Creates, updates, deletes, gets or lists a site_seal
resource.
Overview
Name | site_seal |
Type | Resource |
Id | godaddy.certificates.site_seal |
Fields
The following fields are returned by SELECT
queries:
- certificate_siteseal_get
Site seal retrieved
Name | Datatype | Description |
---|---|---|
html | string | Certificate Seal HTML |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
certificate_siteseal_get | select | certificate_id | theme , locale | This method is used to obtain the site seal information for an issued certificate. A site seal is a graphic that the certificate purchaser can embed on their web site to show their visitors information about their SSL certificate. If a web site visitor clicks on the site seal image, a pop-up page is displayed that contains detailed information about the SSL certificate. The site seal token is used to link the site seal graphic image to the appropriate certificate details pop-up page display when a user clicks on the site seal. The site seal images are expected to be static images and hosted on the reseller''s website, to minimize delays for customer page load times. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
certificate_id | string | Certificate id |
locale | string | Determine locale for text displayed in seal image and verification page. If seal doesn't exist, default values are used if params not present. If seal does exist, default values will not be used to update unless params present. |
theme | string | This value represents the visual theme of the seal. If seal doesn't exist, default values are used if params not present. If seal does exist, default values will not be used to update unless params present. |
SELECT
examples
- certificate_siteseal_get
This method is used to obtain the site seal information for an issued certificate. A site seal is a graphic that the certificate purchaser can embed on their web site to show their visitors information about their SSL certificate. If a web site visitor clicks on the site seal image, a pop-up page is displayed that contains detailed information about the SSL certificate. The site seal token is used to link the site seal graphic image to the appropriate certificate details pop-up page display when a user clicks on the site seal. The site seal images are expected to be static images and hosted on the reseller''s website, to minimize delays for customer page load times.
SELECT
html
FROM godaddy.certificates.site_seal
WHERE certificate_id = '{{ certificate_id }}' -- required
AND theme = '{{ theme }}'
AND locale = '{{ locale }}'
;