Team Settings

Update team-level Signal preferences.

PATCH https://app.resemble.ai/api/v2/signal/settings

Request parameters

FieldTypeRequiredDescription
use_builtin_categoriesbooleanNoWhen false, scoring uses only the team’s custom categories. Defaults to true.

Example

$curl --request PATCH 'https://app.resemble.ai/api/v2/signal/settings' \
> -H 'Authorization: Bearer YOUR_API_TOKEN' \
> -H 'Content-Type: application/json' \
> --data '{ "use_builtin_categories": false }'

Response

1{
2 "success": true,
3 "settings": {
4 "use_builtin_categories": false
5 }
6}

Turning off the built-in categories takes effect on the next submission. If the team has no custom categories in the ready state, scoring has nothing to match against — keep at least one ready custom category before disabling the built-ins.