Update note
documentedUpdate one or more fields of an existing note.
PATCH /notes/{id}Notesno implementation yet0 runsNo 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://api.productboard.com/notes/{{$note_id}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"title": "{{$title}}", "content": "{{$content}}", "user_email": "{{$user_email}}", "customer_email": "{{$user_email}}", "company": "{{$company}}", "display_url": "{{$display_url}}", "source": "{{$source}}", "tags": ["{{$tag}}"]}'