Create Article Asset
documentedAdd assets to an article.
POST /v1/articles/{articleId}/assetsAssetsno 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://docsapi.helpscout.net/v1/assets/article" \
-X POST \
-u "{{HELPSCOUT_API_KEY}}:X" \
-H "Accept: application/json" \
-F "key={{HELPSCOUT_API_KEY}}" \
-F "articleId={{$article_id}}" \
-F "assetType={{$asset_type}}" \
-F "fileName={{$file_name}}" \
-F "file=@{{$file_path}}"