SSL Certificates
Access and download Jakamo's SSL certificates for enterprise security requirements.
1. Overviewβ
All Jakamo APIs use secure HTTPS connections with valid SSL certificates. Some enterprise environments require certificate whitelisting, firewall configuration, or certificate validation as part of their security policies.
This page provides information on how to access and download Jakamo's SSL certificates for both test and production environments.
2. Accessing SSL Certificatesβ
2.1 Browser Method πβ
The easiest way to view and download SSL certificates is through your web browser:
-
Navigate to the Jakamo environment:
- Test:
https://demo.thejakamo.com/
- Production:
https://www.thejakamo.com/
- Test:
-
View certificate details:
- Click the π lock icon in your browser's address bar
- Select "Certificate" or "View Certificate"
- View certificate information and chain
-
Download certificate (if needed):
- Most browsers allow you to export/download the certificate
- Choose the format required by your security team (usually .cer or .pem)
2.2 Command Line Method π»β
You can also retrieve certificate information using command line tools:
# View certificate details and full chain
openssl s_client -connect demo.thejakamo.com:443 -showcerts
# Save server certificate only
openssl s_client -connect demo.thejakamo.com:443 -showcerts < /dev/null 2>/dev/null | openssl x509 -outform PEM > jakamo-cert.pem
# Save full certificate chain (server + intermediate + root CA)
openssl s_client -connect demo.thejakamo.com:443 -showcerts < /dev/null 2>/dev/null | sed -n '/-----BEGIN CERTIFICATE-----/,/-----END CERTIFICATE-----/p' > jakamo-chain.pem
# For most use cases, you only need:
# 1. Server certificate only (most common)
openssl s_client -connect demo.thejakamo.com:443 -showcerts < /dev/null 2>/dev/null | openssl x509 -outform PEM > jakamo-cert.pem
# 2. Full certificate chain (for advanced security tools)
openssl s_client -connect demo.thejakamo.com:443 -showcerts < /dev/null 2>/dev/null | sed -n '/-----BEGIN CERTIFICATE-----/,/-----END CERTIFICATE-----/p' > jakamo-chain.pem
# Note: For individual certificate extraction, use the full chain file and split manually if needed
π Certificate Chain Structure:
- Server Certificate:
*.thejakamo.com
(4096-bit RSA) - Intermediate CA: DigiCert Global G2 TLS RSA SHA256 2020 CA1
- Root CA: DigiCert Global Root G2
3. Certificate Detailsβ
3.1 Test Environmentβ
Property | Value |
---|---|
Domain | *.thejakamo.com |
Issuer | DigiCert Global G2 TLS RSA SHA256 2020 CA1 |
Algorithm | RSA |
Key Size | 4096 bits |
Organization | Jakamo Limited |
Country | FI |
Locality | SeinΓ€joki |
3.2 Production Environmentβ
Property | Value |
---|---|
Domain | *.thejakamo.com |
Issuer | DigiCert Global G2 TLS RSA SHA256 2020 CA1 |
Algorithm | RSA |
Key Size | 4096 bits |
Organization | Jakamo Limited |
Country | FI |
Locality | SeinΓ€joki |
4. Common Use Casesβ
4.1 Firewall Configurationβ
Your IT team may need certificate details to configure corporate firewalls or proxy servers to allow connections to Jakamo APIs.
4.2 Certificate Pinningβ
Some enterprise applications implement certificate pinning for additional security. You'll need the certificate fingerprints for this.
4.3 Security Complianceβ
Corporate security policies may require certificate validation or whitelisting before allowing API integrations.
4.4 Network Troubleshootingβ
Certificate details can help diagnose SSL/TLS connection issues during integration development.
5. Certificate Validationβ
Both test and production environments use the same certificate authority (DigiCert). The certificates are:
- β Valid and trusted by all major browsers and operating systems
- β SHA-256 signed with strong encryption
- β 4096-bit RSA keys for enhanced security
- β Regularly renewed before expiration
If you're connecting from a corporate network with strict security policies, share these certificate details with your IT security team. They may need to whitelist the certificate authority or configure proxy settings.
Need help with certificate configuration or having SSL connection issues? Send an email to Jakamo support (support@thejakamo.com) and we will help you.