Skip to main content

site_seal

Creates, updates, deletes, gets or lists a site_seal resource.

Overview

Namesite_seal
TypeResource
Idgodaddy.certificates.site_seal

Fields

The following fields are returned by SELECT queries:

Site seal retrieved

NameDatatypeDescription
htmlstringCertificate Seal HTML

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
certificate_siteseal_getselectcertificate_idtheme, localeThis 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.

NameDatatypeDescription
certificate_idstringCertificate id
localestringDetermine 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.
themestringThis 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

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 }}'
;