RestAPI : Is changing @RequestParam type from String to List<String> a backward compatible change?

91 Views Asked by At

I have an API which take a @RequestParam of type String. Now I want to change the type to List. There are some existing clients who use this endpoint and request param. Will the change be considered backward compatible?

Existing : @RequestParam("test") test: String

New : @RequestParam("test") test: List<String>

0

There are 0 best solutions below