- Overview
- Reference
- API Structure
- Public API
- Introduction
- Loyalty Club
- Member
- Offers
- Rewards
- Games
- CMS Content
- Management API
- Introduction
- Core
- Applications
- Privacy Policy
- Cookie Policy
- Terms
- Domains
- Domain Email Configs
- Domain Web Configs
- TLS Certificates
- Links
- Fonts
- Subunits
- Subunits Scopes
- SMS Sender Identities
- Contacts
- Translations
- Promotions Policy
- Tracker
- Social Logins
- Billing
- Members
- Listing Members
- Member Profile
- Imports
- Groups
- Programs
- Benefits
- Cars
- Webhooks
- Misc
- Receipts
- Stores
- Offers
- Rewards
- Triggerer
- CMS
- Introduction
- Pages
- Components
- Website
- Website Domains
- Venue Info
- Landing Pages
- Landing Page Templates
- Articles
- Events
- Events Groups
- Job Postings
- Press Releases
- Tags
- Service Messages
- Content Prototypes
- ContentPrototype Model
- List Content Prototypes
- Show Content Prototype
- Create Content Prototype
- Update Content Prototype
- Destroy Content Prototype
- List Organization Content Prototypes
- Show Organization Content Prototype
- Create Organization Content Prototype
- Update Organization Content Prototype
- Destroy Organization Content Prototype
- Mixed Content
- Attachments
- Events
- Games
- Scraper
- Files
- Receipts
- Users API
- Operations API
- Introduction
- Manager API
- Tenant API
- Messaging API
- Data API
- ML API
- Introduction
- Predict Sending KPI v1
- Explain Sending KPI Prediction v1
- Predict Sending KPI In Date Range v1
- Predict Sending Popularity v2
- Predict Sending Text Popularity v2
- Predict Sending Time Series Popularity v2
- Explain Sending Popularity Prediction v2
- Explain Sending Text Popularity Prediction v2
- Explain Sending Time Series Popularity Prediction v2
- Recommend sending time v2
- Generate Image
- Generate Text
- Generate Sending Text
- (Draft) Reporting API
- Other
Introduction
TLS Certificate Model#
Example#
{
"tls_certificate": {
"id": 1,
"name": "friendly_name",
"certificate": "-----BEGIN CERTIFICATE-----\nMIIB0DCCAXagAwIBAgIEGCRJozAKBggqhkjOPQQDAjBHMQswCQYDVQQGEwJQTDEU\nMBIGA1UEAwwLZXhhbXBsZS5jb20xCjAIBgNVBAgMAWExCjAIBgNVBAcMAWExCjAI\nBgNVBAoMAWEwHhcNMjQwMjIxMTAxMjIzWhcNMjYwMjIwMTAxMjIzWjBHMQswCQYD\nVQQGEwJQTDEUMBIGA1UEAwwLZXhhbXBsZS5jb20xCjAIBgNVBAgMAWExCjAIBgNV\nBAcMAWExCjAIBgNVBAoMAWEwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATUO4FY\n0Lz4RKB7t3IpVOAWDxaKd9KAA4rvxSdUEGkxgSPEaJDorau6+nnLlDZ65UiN8sxV\nJzcWYEv11HWd+iWvo1AwTjAdBgNVHQ4EFgQUmRCaoeO5jxfa+IP5ZrJXggc50VEw\nHwYDVR0jBBgwFoAUmRCaoeO5jxfa+IP5ZrJXggc50VEwDAYDVR0TBAUwAwEB/zAK\nBggqhkjOPQQDAgNIADBFAiBgVpb0C4upyr248a2VLsee6qVW3UnCi9W1bD+zdL4R\nagIhAP/yKMLgMuMc6dll7PcQb2Z+4N+LgROT5zKZVnaoh0+a\n-----END CERTIFICATE-----",
"private_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIE5Ws2f35giW8BXQnOU8eNwohRW1rwaiJiFFBIC40ShLoAoGCCqGSM49\nAwEHoUQDQgAE1DuBWNC8+ESge7dyKVTgFg8WinfSgAOK78UnVBBpMYEjxGiQ6K2r\nuvp5y5Q2euVIjfLMVSc3FmBL9dR1nfolrw==\n-----END EC PRIVATE KEY-----",
"certificate_type": "EC",
"expires_at": "2026-02-20T10:12:23.000000Z",
"common_names": [
"example.com"
],
"created_at": "2024-02-21T10:14:16.593398Z",
"updated_at": "2024-02-21T10:14:16.593398Z"
}
}
Definition#
Key | Type | Optional | Read-only | Description |
---|---|---|---|---|
id | integer | no | yes | |
name | string | yes | no | Name of the certificate |
certificate | string | no | no | Certificate itself |
private_key | string | no | no | Private key used to sign the certificate (is returned as "*****") |
certificate_type | string | no | yes | Certificate type (RSA, EC) |
expires_at | datetime | no | yes | Expiration time of the certificate |
common_names | string[] | no | yes | Certificate common names + SAN domains |
created_at | datetime | no | yes | Time of record creation |
updated_at | datetime | no | yes | Time of record last update |
Modified at 2024-04-22 22:13:50