Mass Messages
Update Mass Message
Edits a queue item in place. The canonical "edit a scheduled mass message" operation — change the send time, rewrite the text, swap media, or move the audience without cancelling and recreating. Cannot edit messages already delivered (isDone: true or past scheduledDate). Pass scheduledDate alone to just reschedule, or submit a full snapshot to rewrite the message — both shapes are accepted. Requires permission api_mass_messages_update.
https://public-api.buffmetrics.comAuthorization
defaultAuthorizationBearer <token>Send your FansMetric API key as a Bearer token in the Authorization header.
In: header
Path Parameters
account_id*integerOnlyFans numeric account ID.
queue_id*integerThe queue ID of the scheduled mass message to edit.
Request Body
application/jsontextstringNew message text. HTML accepted.
lockedTextbooleanWhether the text is locked behind the paywall.
mediaFilesarrayVault media IDs to attach. Replaces the existing attachments when provided.
previewsarrayVault media IDs to surface as paywall previews.
pricestringPrice in dollars.
0for free.userListsstringAudience list IDs to send to.
userIdsstringExplicit user IDs to send to.
excludedListsstringList IDs to exclude from the audience.
rfTagstringRelease-form tag identifier.
rfGueststringRelease-form guest identifier.
rfPartnerstringRelease-form partner identifier.
giphyIdstringGiphy ID if the message is a GIF.
scheduledDatestringISO timestamp for the (re)scheduled send. Pass this alone to just reschedule.
recommendersstringRecommender block, matching the Send Mass Message shape.
filtersstringAudience filters, matching the Send Mass Message shape.
curl --request PUT "https://public-api.buffmetrics.com/v1/acct_XXXXX/mass-messages/queue/sample_queue_id" \
--header "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
--data '{ "scheduledDate": "2026-06-10T15:00:00.000Z" }'Response
200