Skip to main content
POST
/
accounts
/
{username}
/
promo-texts
/
{id}
Update promo text
curl --request POST \
  --url https://studio-api.onlytraffic.com/api/external/v1/accounts/{username}/promo-texts/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "text": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://onlytraffic.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Your API key from the Studio Dashboard

Path Parameters

username
string
required

OnlyFans username of the model owned by your account.

Maximum string length: 30
Pattern: ^[a-zA-Z0-9_.-]+$
id
integer
required

Numeric resource id.

Required range: x >= 1

Body

application/json
text
string
required
Required string length: 1 - 1000

Response

Updated

success
boolean
Example:

true

data
object