ACME API Documentation logo

Update RSS Feed

Update an RSS feed

PUThttps://api.acme.com/api/feed
Available on Premium, Business, Enterprise plans.

Header Parameters

Authorizationstringrequired
API Key of the Primary Profile.

Format: Authorization: Bearer API_KEY
Profile-Keystring
Profile Key of a User Profile.

Format: Profile-Key: PROFILE_KEY

Body Parameters

idstringrequired

The RSS feed id returned from the RSS feed POST endpoint.

useFirstImageboolean

Attempt to get the first or top image in the article and add it to the post.

autoHashtagboolean

Automatically add up to 3 hashtags to the post text based on the most relevant keywords.

curl \
-H "Authorization: Bearer API_KEY" \
-H 'Content-Type: application/json' \
-d '{"id": "4HZhptaD5", "useFirstImage": true, "autoHashtag": true}' \
-X PUT https://api.acme.com/api/feed
{
  "status": "success",
  "id": "vVYX3cgJ7"
}