Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

{toucan url}/Api/createlead/{guid}

Where:

  • Toucan url is the the customers toucan web site url

  • Guid is the customers Toucan Unique Company Guid

  • A JSON format should also be passed with in the body of the API call

Example: https://dev2.toucanreporting.com//Api/createlead/621288e5-5be3-43c2-acc4-fa1b7236a7

Simple Test Version

Code Block
                            {
                              "Leads": [
                                {
                                  "Lead": {
                                    "Name": "Test New Lead Via API"
                                  },
                                  "Address":
                                   [{
                                      "Address": {},
                                      "Contacts": [{}]
                                    }]
                                }
                              ]
                            }

...