Try our new Setup Skill to automatically integrate Hyperspell into your project
curl --request PATCH \
--url https://api.hyperspell.com/integrations/{integration_id}/connections/{connection_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"channels": [
"<string>"
]
}
'{
"channels": []
}Save per-user options on a connection the caller owns.
Used by the Connect app to persist channel picks after OAuth completes. Scope: user can only update their own connections in their own app.
curl --request PATCH \
--url https://api.hyperspell.com/integrations/{integration_id}/connections/{connection_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"channels": [
"<string>"
]
}
'{
"channels": []
}Documentation Index
Fetch the complete documentation index at: https://docs.hyperspell.com/llms.txt
Use this file to discover all available pages before exploring further.
API Key or JWT User Token. If using an API Key, set the X-As-User header to act as a specific user. A JWT User Token is always scoped to a specific user.
Channel/chat IDs to index. Empty list blocks all.
Successful Response
Per-connection, per-user options set by the end user after OAuth.
Contrast with IntegrationConfig.index_options which is app-wide. These values live on the specific Connection because they depend on the tenant (e.g., which Teams channels this user wants indexed).
Was this page helpful?