Create feed element
documentedPost a new feed element (e.g., a post) to a feed.
POST /services/data/{version}/chatter/feed-elementsFeedsno 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://{{$instance_url}}/services/data/{{$version}}/chatter/feed-elements\" \
-X POST \
-H \"Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}\" \
-H \"Content-Type: application/json\" \
-H \"Accept: application/json\" \
-d '{ \"body\": { \"messageSegments\": [ { \"type\": \"text\", \"text\": \"{{$title}}\" } ] }, \"feedElementType\": \"FeedItem\", \"subjectId\": \"{{$subject_id}}\" }'