I have a model to get the list of countries public class Coutry{ public string country; public string region; }
I try to do this code but I encounter error: var client = new RestClient("<API LINK HERE>"); var request = new RestRequest(Method.GET); IRestResponse response = client.Execute(request); var content = response.Content; // raw content as string dynamic json = JsonConvert.DeserializeObject(content);
var countries = JsonConvert.DeserializeObject<List<Country>>(content);
the response of api: { "status": "OK", "status-code": 200, "version": "1", "total": 57, "limit": 3, "offset": 0, "access": "public", "data": { "DZ": { "country": "Algeria", "region": "Africa" }, "AO": { "country": "Angola", "region": "Africa" }, "BJ": { "country": "Benin", "region": "Africa" } } }