I am trying to make get requests using axios but parameters that have spaces are encoded using + yet the server is expecting something like %A. How do I make axios to use this same formatting style. Here is my sample request
this.$requestInstance.get(endpoint, { params })
And this is what axios makes out of it
https://emata-coopmis-api-test.laboremus.no/api/ledger/cooperatives/106aeb4d-71c7-4601-abe1-abd7d47f9df1/prices?EffectiveDateRange.From=2019-11-5+12:00:00&EffectiveDateRange.To=2019-11-5+11:59:59&ShowDailyPrices=false
In this case the spaces are in the EffectiveDateRange.From and EffectiveDateRange.To params
This is what the server expects https://emata-coopmis-api-test.laboremus.no/api/ledger/cooperatives/106aeb4d-71c7-4601-abe1-abd7d47f9df1/prices?EffectiveDateRange.From=2019-11-5%2012%3A00%3A00&EffectiveDateRange.To=2019-11-5%2023%3A59%3A59&ShowDailyPrices=true enter code here