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.