By default, GET expects an object {}, QUERY expects an array[]. In your case, Web API returns an array for GET, so you need to set isArray flag for GET as true. If your Web API returned an object, then you would not need to reset that flag because it is GET's default behavior.