Halu89
Results
2
comments of
Halu89
You should have access to error messages via the ResponseError : ```typescript try { return api.getPetById({petId: 1}) } catch (error: unknown) { let message = 'An error occurred' if (error...
Hi, if I'm not mistaken, you should be able to accomplish this behavior via the axios configuration, specifically via the paramsSerializer option: ```typescript axios.get('/myController/myAction', { params: { storeIds: [1,2,3] },...