Lead Capture

Rechat provides a webhook that can be used in lead capturing forms and elsewhere. The URL, which needs to be generated by Rechat, can support a variety of common patterns and industry standard formats. The payload can be a XML in the LTS format, a JSON or url-encoded data in case a custom integration is desired. The JSON & url-encoded payloads need to contain a subset of the following fields:

{
  first_name: string;
  last_name: string;
  email: string;
  phone_number: string;
  tag: string;
  lead_source: string;
  note: string;
  address: string;
  referer_url: string;
  mlsid: string;
  agent_mlsid: string;
}

Note that all fields are optional

Last updated