Samples

  • This content includes lead data from three different form submissions, each captured within a JSON format.

  • The forms collect user information such as Full Name, Phone Number, and in some instances, Email and Postal Code, all under specific column names and IDs.

  • All form submissions provide additional details including a unique lead ID, a shared campaign ID, a Google Click Identifier (gcl_id), a shared form ID, and a google key.

  • There is one production lead type, and two test lead types that are identified with a true value for is_test.

  • The form types represented can consist of only Name and phone, or it can be Name, Email, Phone, and Postal code.

Form type: Name, Phone
Lead type: Production

{
  "lead_id":"Cj0KCQjwit_8BRCoARIsAIx3Rj7g-AeL6z35IWb6VYiZUygtTfwD3hDlgSGmY-XTTlK3lfV1wcuIwIAaAmMxEALw_wcB",
  "campaign_id":123456,
  "gcl_id":"Cj0KCQjwit_8BRCoARIsAIx3Rj7g-AeL6z35IWb6VYiZUygtTfwD3hDlgSGmY-XTTlK3lfV1wcuIwIAaAmMxEALw_wcB",
  "user_column_data": [
    {
      "column_name":"Full Name",
      "string_value":"John Doe",
      "column_id": "FULL_NAME"
    },
    {
      "column_name": "User Phone",
      "string_value":"+11234567890",
      "column_id":"PHONE_NUMBER"
    }
  ],
  "api_version":"1.0",
  "form_id":1234,
  "google_key":"xfdgdgsgfchgvhgfchg",
}

Form type: Name, Phone
Lead type: Test

{
  "lead_id":"Cj0KCQjwit_8BRCoARIsAIx3Rj7g-AeL6z35IWb6VYiZUygtTfwD3hDlgSGmY-XTTlK3lfV1wcuIwIAaAmMxEALw_wcB",
  "campaign_id":123456,
  "gcl_id":"Cj0KCQjwit_8BRCoARIsAIx3Rj7g-AeL6z35IWb6VYiZUygtTfwD3hDlgSGmY-XTTlK3lfV1wcuIwIAaAmMxEALw_wcB",
  "user_column_data": [
    {
      "column_name":"Full Name",
      "string_value":"John Doe",
      "column_id": "FULL_NAME"
    },
    {
      "column_name": "User Phone",
      "string_value":"+11234567890",
      "column_id":"PHONE_NUMBER"
    }
  ],
  "api_version":"1.0",
  "form_id":1234,
  "Google_key":"xfdgdgsgfchgvhgfchg",
  "is_test":true
}

Form type: Name, Email, Phone, Postal Code
Lead type: Test

{
  "lead_id":"Cj0KCQjwit_8BRCoARIsAIx3Rj7g-AeL6z35IWb6VYiZUygtTfwD3hDlgSGmY-XTTlK3lfV1wcuIwIAaAmMxEALw_wcB",
  "campaign_id":123456,
  "gcl_id":"Cj0KCQjwit_8BRCoARIsAIx3Rj7g-AeL6z35IWb6VYiZUygtTfwD3hDlgSGmY-XTTlK3lfV1wcuIwIAaAmMxEALw_wcB",
  "user_column_data": [
    {
      "column_name":"Full Name",
      "string_value":"John Doe",
      "column_id": "FULL_NAME"
    },
    {
      "column_name": "User Email",
      "string_value":"abc@xyz.com",
      "column_id":"EMAIL"
    },
    {
      "column_name": "User Phone",
      "string_value":"+11234567890",
      "column_id":"PHONE_NUMBER"
    },
    {
      "column_name": "Postal Code",
      "string_value":"94043",
      "column_id":"POSTAL_CODE"
    }
  ],
  "api_version":"1.0",
  "form_id":1234,
  "Google_key":"xfdgdgsgfchgvhgfchg",
  "is_test":true
}