Update article
documentedUpdate an article.
PUT /articles/{id}Articlesno 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.intercom.io/articles/{{$article_id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Intercom-Version: 2.15" \
-d '{"title": "{{$title}}", "description": "{{$description}}", "body": "{{$body}}", "author_id": {{$author_id}}, "state": "{{$state}}", "parent_id": "{{$parent_id}}", "parent_type": "{{$parent_type}}", "translated_content": {"{{$locale_code}}": {"title": "{{$translated_title}}", "description": "{{$translated_description}}", "body": "{{$translated_body}}"}} }'