Skip to main content
PATCH
/
questionnaires
/
{id}
Updates the configuration settings of an existing questionnaire.
curl --request PATCH \
  --url https://api.example.com/questionnaires/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "retryIntervalDays": 123,
  "maxTries": 123,
  "intervalBackOffMultiplier": 123,
  "repeatIntervalDays": 123,
  "firstMessage": "<string>"
}
'

Path Parameters

id
integer<int32>
required

The unique identifier of the questionnaire to update.

Body

The updated questionnaire configuration including retry settings and messaging.

retryIntervalDays
integer<int32> | null
maxTries
integer<int32> | null
intervalBackOffMultiplier
integer<int32> | null
repeatIntervalDays
integer<int32> | null
firstMessage
string | null

Response

OK