Payload schema
configobject
Router configuration fixed at birth.
connectionstring
Named Slack connection (workspace installation) this router serves; qualifies the `/agents/slack/{connection}/…` thread paths it creates.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"connection": {
"type": "string",
"description": "Named Slack connection (workspace installation) this router serves; qualifies the `/agents/slack/{connection}/…` thread paths it creates."
}
},
"required": [
"connection"
],
"description": "Router configuration fixed at birth."
}
},
"required": [
"config"
]
}