BigCommerce · Schema

CertificateWrite

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
certificate string The primary certificate, as a string.
private_key string The private key, as a string. Is a "write-only" field, will never be returned after write.
intermediate_certificates string The intermediate certificate(s), as a string.
View JSON Schema on GitHub

JSON Schema

bigcommerce-certificatewrite-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificateWrite",
  "title": "CertificateWrite",
  "type": "object",
  "description": "",
  "properties": {
    "certificate": {
      "type": "string",
      "description": "The primary certificate, as a string."
    },
    "private_key": {
      "type": "string",
      "description": "The private key, as a string. Is a \"write-only\" field, will never be returned after write."
    },
    "intermediate_certificates": {
      "type": "string",
      "description": "The intermediate certificate(s), as a string."
    }
  },
  "x-tags": [
    "Models"
  ]
}