Sign in

Update tag

documented

Update a tag.

PUT /v1/tags/{id}Tagsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://cxi-api.wootric.com/v1/tags/{{$id}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -F "tag[name]={{$name}}" \
  -F "tag[description]={{$description}}" \
  -F "tag[mode]={{$mode}}" \
  -F "tag[parent_id]={{$parent_id}}" \
  -F "tag[text_match_terms][]={{$text_match_term_1}}" \
  -F "tag[text_match_terms][]={{$text_match_term_2}}" \
  -F "tag[filter_rules]={{$filter_rules}}"
Update tag · Wootric · OpenIntegrations