Properties
| Name | Type | Description |
|---|---|---|
| url | string | The Fully Qualified URL (including host and scheme) where this site is hosted. All URLs generated for this site will be appended to this. |
| channel_id | integer | The channel this site is attached to. Each site belongs to a single channel, and each channel can have either zero or one sites. |
| certificate | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SiteCreate",
"title": "SiteCreate",
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The Fully Qualified URL (including host and scheme) where this site is hosted. All URLs generated for this site will be appended to this.",
"example": "http://kittens.mybigcommerce.com/"
},
"channel_id": {
"type": "integer",
"description": "The channel this site is attached to. Each site belongs to a single channel, and each channel can have either zero or one sites."
},
"certificate": {
"$ref": "#/components/schemas/CertificateWrite"
}
},
"x-tags": [
"Models"
]
}