No description available.
Properties
Text to search for and replace.
maxLength: 100 bytesminLength: 1 bytes
Text to replace with.
maxLength: 100 bytes
View raw schema
{
"type": "object",
"required": [
"from",
"to"
],
"properties": {
"to": {
"type": "string",
"maxLength": 100,
"description": "Text to replace with."
},
"from": {
"type": "string",
"maxLength": 100,
"minLength": 1,
"description": "Text to search for and replace."
}
}
}
A webhook configuration for receiving Streamplace events.
Properties
Whether this webhook is currently active.
When this webhook was created.
A description of what this webhook is used for.
maxLength: 500 bytes
Number of consecutive errors for this webhook.
The types of events this webhook should receive.
Unique identifier for this webhook.
When this webhook was last triggered.
Words to filter out from chat messages. Messages containing any of these words will not be forwarded.
A user-friendly name for this webhook.
maxLength: 100 bytes
Text to prepend to webhook messages.
maxLength: 100 bytes
Text replacement rules for webhook messages.
Text to append to webhook messages.
maxLength: 100 bytes
When this webhook was last updated.
The webhook URL where events will be sent.
View raw schema
{
"type": "object",
"required": [
"id",
"url",
"events",
"active",
"createdAt"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for this webhook."
},
"url": {
"type": "string",
"format": "uri",
"description": "The webhook URL where events will be sent."
},
"name": {
"type": "string",
"maxLength": 100,
"description": "A user-friendly name for this webhook."
},
"active": {
"type": "boolean",
"description": "Whether this webhook is currently active."
},
"events": {
"type": "array",
"items": {
"enum": [
"chat",
"livestream",
"follow",
"mention"
],
"type": "string"
},
"description": "The types of events this webhook should receive."
},
"prefix": {
"type": "string",
"maxLength": 100,
"description": "Text to prepend to webhook messages."
},
"suffix": {
"type": "string",
"maxLength": 100,
"description": "Text to append to webhook messages."
},
"rewrite": {
"type": "array",
"items": {
"ref": "#rewriteRule",
"type": "ref"
},
"description": "Text replacement rules for webhook messages."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this webhook was created."
},
"muteWords": {
"type": "array",
"items": {
"type": "string",
"maxLength": 100
},
"description": "Words to filter out from chat messages. Messages containing any of these words will not be forwarded."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When this webhook was last updated."
},
"errorCount": {
"type": "integer",
"description": "Number of consecutive errors for this webhook."
},
"description": {
"type": "string",
"maxLength": 500,
"description": "A description of what this webhook is used for."
},
"lastTriggered": {
"type": "string",
"format": "datetime",
"description": "When this webhook was last triggered."
}
},
"description": "A webhook configuration for receiving Streamplace events."
}