Sign in

Update suggestion engine

documented

Update the configuration of a suggestion engine.

POST /api/1/seSuggestion Engineno 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://www.scoop.it/api/1/se" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Accept-Encoding: gzip,deflate" \
  -d '{"id": {{$engine_id}}, "sorter": "{{$sorter}}", "maxSuggestionAge": {{$maxSuggestionAge}}, "keywords": {{$keywords}}, "includedDomains": {{$includedDomains}}, "excludedDomains": {{$excludedDomains}}, "containsAllKeyword": {{$containsAllKeyword}}, "containsAnyKeyword": {{$containsAnyKeyword}}, "doesNotContainKeywords": {{$doesNotContainKeywords}} }'