Parsing a complex JSON result with C#

后端 未结 4 1448
一生所求
一生所求 2021-01-21 08:46

I am trying to parse the following complex JSON result, which is returned from the Zoho Crm API:

{
\"response\":
{
    \"result\":
    {
        \"Contacts\":
           


        
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-21 09:31

    You need to include the following portion of JSON in your deserialization object Type :

    {
    "response":
    {
        "result":
        {
            "Contacts":
            {
                "row":
                [
                    {
                        "no":"1",
                        "FL":
    

    Class type : 'Contact' is inadequate.

提交回复
热议问题