[Answered ]-URL Query Param Djangorestframework

2👍

Difficult to answer if we can’t see, how you applying the filtering feature in your view.
I can already tell you you would need custom filter backend.

To separate the values, you just need to agree on a fixed separator that would probably won’t exists in the value’s content itself. Typically for single word values it would be comma, so if you think comma won’t exists in status text, then you should go with it.

Awaiting%20Staff%20Reply,Open

Then you can handle the status value in custom filtering class or so, depending on what type of backend are you using.

Leave a comment