Skip to main content
PATCH
/
api
/
v1
/
misc
/
reddit
/
post
Edit an existing Reddit post
curl --request PATCH \
  --url https://api.bundle.social/api/v1/misc/reddit/post \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "teamId": "<string>",
  "postId": "<string>",
  "description": "<string>"
}
'
{
  "success": true,
  "permalink": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Body

teamId
string
required
postId
string
required

The ID of the post to edit (without prefix)

description
string
required

The updated text content (selftext for text posts, works for all editable post types)

Response

200

success
boolean
required