Skip to main content
PUT
/
users
/
markup-percent
Update Markup Percentage
curl --request PUT \
  --url https://api.breet.io/v1/users/markup-percent \
  --header 'Content-Type: application/json' \
  --header 'X-Breet-Env: <api-key>' \
  --header 'x-app-id: <api-key>' \
  --header 'x-app-secret: <api-key>' \
  --data '
{
  "markupPercent": 5
}
'
{
  "message": "markup percentage set successfully",
  "success": true,
  "data": {
    "markupPercent": 5
  },
  "meta": {},
  "summary": {},
  "stats": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.breet.io/llms.txt

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

Authorizations

x-app-id
string
header
required

Your application ID from the Breet dashboard

x-app-secret
string
header
required

Your application secret from the Breet dashboard

X-Breet-Env
string
header
required

Environment selector: development or production

Body

application/json
markupPercent
number

Markup percentage applied on top of the base sell rate. Must be between 0 and 10.

Response

Markup percentage updated successfully