Sign in

Create tag

documented

Create a new tag.

POST /v1/tagsTagsno 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" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -F "tag[name]={{$tag_name}}" \
  -F "tag[description]={{$tag_description}}" \
  -F "tag[mode]={{$tag_mode}}" \
  -F "tag[parent_id]={{$tag_parent_id}}" \
  -F "tag[text_match_terms][]={{$tag_term1}}" \
  -F "tag[text_match_terms][]={{$tag_term2}}" \
  -F "tag[text_match_terms][]={{$tag_term3}}"
Create tag · Wootric · OpenIntegrations