// Represent user lead data for single column
message UserLeadColumnData {
// Human-readable text of the field type (e.g.: Full Name, What is your
// preferred dealership?). This field might not always be populated.
optional string column_name = 1;
// Column value based on column type
oneof column_value {
string string_value = 2;
}
// Column id. Populated for all types of fields. (e.g.: FULL_NAME)
optional string column_id = 3;
}
// Message to construct webhook JSON payload
message WebhookLead {
// Unique id to represent lead
optional string lead_id = 1;
// User inputted data per column
repeated UserLeadColumnData user_column_data = 2;
// API version
optional string api_version = 3;
// Form id to which lead belonged to.
optional int64 form_id = 4;
// Campaign id that the lead form is associated with
optional int64 campaign_id = 5;
// Key to be used by advertiser to verify the request
// is from Google.
optional string google_key = 6;
// Denotes if the lead is a test lead.
optional bool is_test = 7;
// Click ID for the lead submission.
optional string gcl_id = 8;
// Adgroup id which generated the lead.
optional int64 adgroup_id = 9;
// Creative id which generated the lead.
optional int64 creative_id = 10;
}
필드 설명
필드
설명
lead_id
특정 리드를 식별하는 고유한 문자열입니다.
권장사항 처리: 이 기능을 사용하여
있습니다. 이 이름은 모든 양식에서 고유합니다. 신고할 경우
문제가 있는 경우 이 ID가 필요합니다.
api_version
이 리드 스키마가 속한 API 버전입니다. 이 값은
지금은 무시해도 됩니다
form_id
Google Ads에서 구성된 각 양식의 고유 ID 현재 제품을 사용하면
캠페인 수준 양식을 첨부하는 것이 좋습니다 (광고 그룹 또는 광고에 첨부).
등급).
영향: 리드는 form_id에서만 분류할 수 있습니다.
지정할 수 있습니다 (예: 캠페인 수준).
클라이언트는 8바이트 정수를 사용하여 처리해야 합니다.
campaign_id
Google Ads 캠페인 ID 또는 광고 항목 ID (Display &Video 360)는
리드 양식을 첨부했습니다.
클라이언트는 8바이트 정수를 사용하여 처리해야 합니다.
adgroup_id
Google Ads 광고 그룹 ID는 특정 광고 단위를
표시됩니다. (동영상 및 디스커버리의 리드에 사용 가능)
광고에만 해당)
클라이언트는 8바이트 정수를 사용하여 처리해야 합니다.
creative_id
Google Ads 광고 소재 ID는
표시됩니다. (동영상 및 디스커버리의 리드에 사용 가능)
광고에만 해당)
처리 권장사항: webhook을 통해 수신된 리드를 처리하기 전에 google_key를 확인하는 것은 리드가 유효하다는 확신을 높이기 위해 Google Ads에서 구성하는 것과 같습니다. 유지
중요한 정보가 있으면 Google Ads에서 이를 업데이트해 주시기 바랍니다.
널리 퍼졌다고 생각합니다.
is_test
이 입력란에는 '선택사항'이 있습니다. 있습니다. 값이 true인 경우
테스트 리드로 리드해야 합니다. 값이 false이거나 필드가 없는 경우
이 리드를 유효한 프로덕션 리드로
지정할 수 있습니다
user_column_data
사용자가 제출한 데이터를 전송하는 반복되는 키-값 튜플입니다.
user_column_data.column_id: 다음에서 제출한 데이터 유형
있습니다.
User_column_data.column_value: 각 데이터 유형에 데이터 유형에 따라 채워지는 값 유형이 있습니다. 모든
현재 데이터 유형은
user_column_data.string_value
user_column_data.column_name: 사용자가 제출한 데이터 유형의 사람이 읽을 수 있는 텍스트입니다. 이 필드는
대신 column_id 를 사용하세요.