How to handle Multi-Status 207 Http Response in Refit

661 Views Asked by At

I'm trying to handle Multi-Status 207 response from one of API.

I have created interface like:

public interface IServiceAPIs { [Post("/api/data/generate")] Task GenerateData([Body]generateDataRequest) }

and I'm receiving 200 OK as well as 207 Multi-Status with content if some generation fails. If StatusCode other than 200 range Refit generates ApiException but with 207 it is directly returning as I'm using Task

How can I handle this.? Thanks in advance.

0

There are 0 best solutions below