Chilkat Online Tools

Swift3 / Zoho CRM REST APIs / Leads

Back to Collection Items

func chilkatTest() {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let http = CkoHttp()!
    var success: Bool

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "data": [
    //     {
    //       "Company": "Zylker",
    //       "Last_Name": "Daly",
    //       "First_Name": "Paul",
    //       "Email": "p.daly@zylker.com",
    //       "State": "Texas"
    //     },
    //     {
    //       "Company": "Villa Margarita",
    //       "Last_Name": "Dolan",
    //       "First_Name": "Brian",
    //       "Email": "brian@villa.com",
    //       "State": "Texas"
    //     }
    //   ],
    //   "lar_id": "{{lar_id}}",
    //   "trigger": [
    //     "approval",
    //     "workflow",
    //     "blueprint"
    //   ]
    // }

    let json = CkoJsonObject()!
    json.update("data[0].Company", value: "Zylker")
    json.update("data[0].Last_Name", value: "Daly")
    json.update("data[0].First_Name", value: "Paul")
    json.update("data[0].Email", value: "p.daly@zylker.com")
    json.update("data[0].State", value: "Texas")
    json.update("data[1].Company", value: "Villa Margarita")
    json.update("data[1].Last_Name", value: "Dolan")
    json.update("data[1].First_Name", value: "Brian")
    json.update("data[1].Email", value: "brian@villa.com")
    json.update("data[1].State", value: "Texas")
    json.update("lar_id", value: "{{lar_id}}")
    json.update("trigger[0]", value: "approval")
    json.update("trigger[1]", value: "workflow")
    json.update("trigger[2]", value: "blueprint")

    http.setRequestHeader("Authorization", value: "{{authorization-token}}")
    http.setRequestHeader("Content-Type", value: "application/json")

    var resp: CkoHttpResponse? = http.postJson3("https://domain.com/crm/v2.1/Leads", contentType: "application/json", json: json)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    let sbResponseBody = CkoStringBuilder()!
    resp!.getBodySb(sbResponseBody)

    let jResp = CkoJsonObject()!
    jResp.loadSb(sbResponseBody)
    jResp.emitCompact = false

    print("Response Body:")
    print("\(jResp.emit()!)")

    var respStatusCode: Int = resp!.statusCode.intValue
    print("Response Status Code = \(respStatusCode)")
    if respStatusCode >= 400 {
        print("Response Header:")
        print("\(resp!.header!)")
        print("Failed.")
        resp = nil
        return
    }

    resp = nil

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "data": [
    //     {
    //       "code": "SUCCESS",
    //       "details": {
    //         "Modified_Time": "2021-05-05T06:49:00+00:00",
    //         "Modified_By": {
    //           "name": "Patricia Patricia",
    //           "id": "738964000000291009"
    //         },
    //         "Created_Time": "2021-05-05T06:49:00+00:00",
    //         "id": "738964000002118011",
    //         "Created_By": {
    //           "name": "Patricia Patricia",
    //           "id": "738964000000291009"
    //         }
    //       },
    //       "message": "record added",
    //       "status": "success"
    //     },
    //     {
    //       "code": "SUCCESS",
    //       "details": {
    //         "Modified_Time": "2021-05-05T06:49:00+00:00",
    //         "Modified_By": {
    //           "name": "Patricia Patricia",
    //           "id": "738964000000291009"
    //         },
    //         "Created_Time": "2021-05-05T06:49:00+00:00",
    //         "id": "738964000002118012",
    //         "Created_By": {
    //           "name": "Patricia Patricia",
    //           "id": "738964000000291009"
    //         }
    //       },
    //       "message": "record added",
    //       "status": "success"
    //     }
    //   ]
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    var code: String?
    var Modified_Time: String?
    var Name: String?
    var Id: String?
    var Created_Time: String?
    var detailsId: String?
    var Created_ByName: String?
    var Created_ById: String?
    var message: String?
    var status: String?

    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "data").intValue
    while i < count_i {
        jResp.i = i
        code = jResp.string(of: "data[i].code")
        Modified_Time = jResp.string(of: "data[i].details.Modified_Time")
        Name = jResp.string(of: "data[i].details.Modified_By.name")
        Id = jResp.string(of: "data[i].details.Modified_By.id")
        Created_Time = jResp.string(of: "data[i].details.Created_Time")
        detailsId = jResp.string(of: "data[i].details.id")
        Created_ByName = jResp.string(of: "data[i].details.Created_By.name")
        Created_ById = jResp.string(of: "data[i].details.Created_By.id")
        message = jResp.string(of: "data[i].message")
        status = jResp.string(of: "data[i].status")
        i = i + 1
    }


}

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Authorization: {{authorization-token}}"
	-H "Content-Type: application/json"
	-d '{
    "data": [
        {
            "Company": "Zylker",
            "Last_Name": "Daly",
            "First_Name": "Paul",
            "Email": "p.daly@zylker.com",
            "State": "Texas"
        },
        {
            "Company": "Villa Margarita",
            "Last_Name": "Dolan",
            "First_Name": "Brian",
            "Email": "brian@villa.com",
            "State": "Texas"
        }
    ],
    "lar_id": "{{lar_id}}",
    "trigger": [
        "approval",
        "workflow",
        "blueprint"
    ]
}'
https://domain.com/crm/v2.1/Leads

Postman Collection Item JSON

{
  "name": "Leads",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "{{authorization-token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        },\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": \"Dolan\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"brian@villa.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"lar_id\": \"{{lar_id}}\",\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
    },
    "url": {
      "raw": "{{api-domain}}/crm/v2.1/Leads",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2.1",
        "Leads"
      ]
    },
    "description": "To add new entities to a module."
  },
  "response": [
    {
      "name": "SUCCESS RESPONSE",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        },\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": \"Dolan\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"brian@villa.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 06:49:00 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "636"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=15768000"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"SUCCESS\",\n            \"details\": {\n                \"Modified_Time\": \"2021-05-05T06:49:00+00:00\",\n                \"Modified_By\": {\n                    \"name\": \"Patricia Patricia\",\n                    \"id\": \"738964000000291009\"\n                },\n                \"Created_Time\": \"2021-05-05T06:49:00+00:00\",\n                \"id\": \"738964000002118011\",\n                \"Created_By\": {\n                    \"name\": \"Patricia Patricia\",\n                    \"id\": \"738964000000291009\"\n                }\n            },\n            \"message\": \"record added\",\n            \"status\": \"success\"\n        },\n        {\n            \"code\": \"SUCCESS\",\n            \"details\": {\n                \"Modified_Time\": \"2021-05-05T06:49:00+00:00\",\n                \"Modified_By\": {\n                    \"name\": \"Patricia Patricia\",\n                    \"id\": \"738964000000291009\"\n                },\n                \"Created_Time\": \"2021-05-05T06:49:00+00:00\",\n                \"id\": \"738964000002118012\",\n                \"Created_By\": {\n                    \"name\": \"Patricia Patricia\",\n                    \"id\": \"738964000000291009\"\n                }\n            },\n            \"message\": \"record added\",\n            \"status\": \"success\"\n        }\n    ]\n}"
    },
    {
      "name": "INVALID_MODULE",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        },\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": \"Dolan\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"brian@villa.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Lead",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Lead"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 06:49:33 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "133"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "X-Download-Options",
          "value": "noopen"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"code\": \"INVALID_MODULE\",\n    \"details\": {\n        \"resource_path_index\": 0\n    },\n    \"message\": \"the module name given seems to be invalid\",\n    \"status\": \"error\"\n}"
    },
    {
      "name": "Multi-Status Error",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        },\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": 1234,\n            \"First_Name\": \"Brian\",\n            \"Email\": \"patricia.b@zylker.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Multi-Status (WebDAV) (RFC 4918)",
      "code": 207,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 06:51:14 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "486"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"SUCCESS\",\n            \"details\": {\n                \"Modified_Time\": \"2021-05-05T06:51:14+00:00\",\n                \"Modified_By\": {\n                    \"name\": \"patricia patricia\",\n                    \"id\": \"738964000000291009\"\n                },\n                \"Created_Time\": \"2021-05-05T06:51:14+00:00\",\n                \"id\": \"738964000002118044\",\n                \"Created_By\": {\n                    \"name\": \"patricia patricia\",\n                    \"id\": \"738964000000291009\"\n                }\n            },\n            \"message\": \"record added\",\n            \"status\": \"success\"\n        },\n        {\n            \"code\": \"INVALID_DATA\",\n            \"details\": {\n                \"expected_data_type\": \"text\",\n                \"api_name\": \"Last_Name\",\n                \"json_path\": \"$.data[1].Last_Name\"\n            },\n            \"message\": \"invalid data\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "INVALID_DATA",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": 1234,\n            \"First_Name\": \"Brian\",\n            \"Email\": \"patricia.b@zylker.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 06:51:35 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "173"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"INVALID_DATA\",\n            \"details\": {\n                \"expected_data_type\": \"text\",\n                \"api_name\": \"Last_Name\",\n                \"json_path\": \"$.data[0].Last_Name\"\n            },\n            \"message\": \"invalid data\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "MANDATORY_NOT_FOUND",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Villa Margarita\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"patricia.b@zylker.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 06:52:09 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "164"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"MANDATORY_NOT_FOUND\",\n            \"details\": {\n                \"api_name\": \"Last_Name\",\n                \"json_path\": \"$.data[0].Last_Name\"\n            },\n            \"message\": \"required field not found\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "INVALID_REQUEST_METHOD",
      "originalRequest": {
        "method": "COPY",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Villa Margarita\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"patricia.b@zylker.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 06:52:43 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "124"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "X-Frame-Options",
          "value": "deny"
        },
        {
          "key": "X-Download-Options",
          "value": "noopen"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"code\": \"INVALID_REQUEST_METHOD\",\n    \"details\": {},\n    \"message\": \"The http request method type is not a valid one\",\n    \"status\": \"error\"\n}"
    },
    {
      "name": "AUTHENTICATION_FAILURE",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Villa Margarita\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"patricia.b@zylker.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 06:53:01 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "98"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-Download-Options",
          "value": "noopen"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"code\": \"AUTHENTICATION_FAILURE\",\n    \"details\": {},\n    \"message\": \"Authentication failed\",\n    \"status\": \"error\"\n}"
    },
    {
      "name": "DUPLICATE_DATA",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Last_Name\":\"Boyle\",\n            \"Company\": \"Villa Margarita\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"patricia.b@zylker.com\",\n            \"State\": \"Texas\",\n            \"Mobile\": \"9898989898\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 06:54:36 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "371"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"DUPLICATE_DATA\",\n            \"details\": {\n                \"api_name\": \"Mobile\",\n                \"duplicate_record\": {\n                    \"First_Name\": \"Brian\",\n                    \"Owner\": {\n                        \"name\": \"Patricia\",\n                        \"id\": \"738964000000291009\",\n                        \"zuid\": \"60034346\"\n                    },\n                    \"Last_Name\": \"Boyle\",\n                    \"id\": \"738964000002118055\",\n                    \"Salutation\": null\n                },\n                \"json_path\": \"$.data[0].Mobile\",\n                \"id\": \"738964000002118055\",\n                \"more_records\": false\n            },\n            \"message\": \"duplicate data\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "OAUTH_SCOPE_MISMATCH",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        },\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": \"Dolan\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"brian@villa.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"lar_id\": \"{{lar_id}}\",\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 07:32:01 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "113"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-Download-Options",
          "value": "noopen"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"code\": \"OAUTH_SCOPE_MISMATCH\",\n    \"details\": {},\n    \"message\": \"invalid oauth scope to access this URL\",\n    \"status\": \"error\"\n}"
    }
  ]
}