Skip to main content

Removal of `userInputs` field scheduled

Action Required
April 2, 2026, 7:34 p.m.

What is changing?

The userInputs field which is used by UserInputRequiredInput has been marked as deprecated and is scheduled to be removed on 1st July 2026.

What do I need to do?

Use userInput (note the naming is not plural) instead, which accepts a typed list of key-value pairs.

Example usage

Before (using userInputs):

{
  "input": {
    ...
    "userInputs": "{\"vehicle_identification_number\":\"abc\",\"odometer_reading\":\"123\"}"
  }
}

After (using userInput):

{
  "input": {
    ...
    "userInput": [
      {"key": "vehicle_identification_number", "value": "abc"},
      {"key": "odometer_reading", "value": "123"}
    ]
  }
}