Authorization: Bearer ********************{
    "data": {
        "attributes": {
            "domain": "example.com",
            "isWildcard": false,
            "certificate": "-----BEGIN CERTIFICATE-----\n...",
            "privateKey": "-----BEGIN RSA PRIVATE KEY-----\n...",
            "intermediates": "-----BEGIN CERTIFICATE-----\n...-----BEGIN CERTIFICATE-----\n..."
        }
    }
}curl --location --request POST 'https://api.servebolt.io/v1/certificates/' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "attributes": {
            "domain": "example.com",
            "isWildcard": false,
            "certificate": "-----BEGIN CERTIFICATE-----\n...",
            "privateKey": "-----BEGIN RSA PRIVATE KEY-----\n...",
            "intermediates": "-----BEGIN CERTIFICATE-----\n...-----BEGIN CERTIFICATE-----\n..."
        }
    }
}'{
  "data": {
    "id": 102,
    "type": "certificateOrder",
    "attributes": {
      "customerId": 2004,
      "sslId": 223,
      "type": "EXTTERNAL",
      "status": "ACTIVE",
      "domain": "domain.com",
      "isWildcard": false,
      "isLinkable": true,
      "isUsed": false,
      "domains": [
        {
          "id": 2476,
          "name": "domain.com",
          "boltId": 8944,
          "environmentId": 1702
        }
      ],
      "autoRenew": false,
      "dnsChallenges": [],
      "expiresAt": "2025-05-06T15:49:41.000000Z"
    }
  }
}