messagebird · Schema
Channel
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the channel. |
| name | string | The name of the channel. |
| platformId | string | The platform identifier for the channel. |
| status | string | The status of the channel. |
| createdDatetime | string | The date and time when the channel was created. |
| updatedDatetime | string | The date and time when the channel was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Channel",
"title": "Channel",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the channel."
},
"name": {
"type": "string",
"description": "The name of the channel."
},
"platformId": {
"type": "string",
"description": "The platform identifier for the channel.",
"enum": [
"sms",
"whatsapp",
"facebook",
"telegram",
"line",
"wechat",
"email"
]
},
"status": {
"type": "string",
"description": "The status of the channel.",
"enum": [
"active",
"inactive",
"pending"
]
},
"createdDatetime": {
"type": "string",
"format": "date-time",
"description": "The date and time when the channel was created."
},
"updatedDatetime": {
"type": "string",
"format": "date-time",
"description": "The date and time when the channel was last updated."
}
}
}