Skip to main content
PUT
/
contests
/
settings
Update contest settings
curl --request PUT \
  --url https://www.renovationfind.com/rest-api-v1/contests/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "editType": "PAUSE_CURRENT_DRIPS_IN_PIPELINE",
  "newValue": true
}
'
{
  "success": true,
  "message": "<string>"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Body

application/json
editType
enum<string>
required

Which setting to toggle:

  • PAUSE_CURRENT_DRIPS_IN_PIPELINE — pause notifications for existing drip participants
  • PAUSE_VENDOR_CONTEST_DRIPPING_FROM_CFS — pause new CFS records from entering contests
Available options:
PAUSE_CURRENT_DRIPS_IN_PIPELINE,
PAUSE_VENDOR_CONTEST_DRIPPING_FROM_CFS
newValue
boolean
required

The new value for the setting (true = paused, false = active)

Response

Settings updated

success
boolean
Example:

true

message
string