Queryparam with DateTimeOffset value

When we post a request with query param with DateTimeOffset value receives as space instead of plus character?

?date=2021-09-06T01:00:00+01:00

Receives as

2021-09-06T01%3A00%3A00%2001%3A00

Is it expected behavior? thoughts?

0 2 125
2 REPLIES 2

Within a query string, a space can be encoded as + or %20

So if you really want a + character, use it's hex encoding %2B

Not applicable

it should look like

2021-09-06T01%3A00%3A00%2B01%3A00

not sure why its wrong url encoding you are noticing. you can configure this using a javascript if required to fix.