User profiles
Use the search bar or the checkboxes below to find the events you need to use Currents effectively.
These schema consist of the user profile updates that Braze can track through the platform.
고객 프로필 이벤트는 베타 버전입니다. 액세스하려면 고객 성공 매니저 또는 계정 매니저에게 문의하세요.
이러한 이벤트는 쿼리 빌더, SQL 세그먼트 확장, Snowflake 데이터 공유에서 SQL 테이블로도 사용할 수 있습니다. SQL 테이블 스키마 및 열 세부 정보는 SQL 테이블 참조를 확인하세요.
추가 이벤트 권한에 대한 액세스가 필요한 경우 Braze 담당자에게 문의하거나 고객지원 티켓을 열어주세요. 이 페이지에서 필요한 정보를 찾을 수 없는 경우 고객 행동 이벤트 라이브러리, 메시지 참여 이벤트 라이브러리 또는 Currents 샘플 데이터 예시를 참조하세요.
고객 프로필 업데이트 이벤트 구조 설명
이벤트 구조
이 고객 행동 및 사용자 이벤트 분석은 고객 프로필 업데이트 이벤트에 일반적으로 포함되는 정보 유형을 보여줍니다. 구성요소를 확실히 이해하면 개발자와 비즈니스 인텔리전스 전략 팀이 수신되는 Currents 이벤트 데이터를 활용하여 데이터 중심 보고서와 차트를 만들고, 기타 유용한 데이터 측정기준을 활용할 수 있습니다.
스토리지 스키마는 Google Cloud Storage, Amazon S3, Microsoft Azure Blob Storage와 같은 데이터 웨어하우스 스토리지 파트너에게 전송되는 플랫 파일 이벤트 데이터에 적용됩니다. 여기에 나열된 일부 이벤트 및 대상 조합은 아직 일반 제공되지 않습니다. 파트너별 지원 이벤트에 대한 정보는 사용 가능한 파트너 및 관련 파트너 페이지를 참조하세요.
Currents는 페이로드가 900KB보다 큰 이벤트를 삭제합니다.
고객 프로필 업데이트 이벤트
사용자의 프로필 업데이트를 나타냅니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// users.profile.Update
{
"app_group_id" : "(optional, string) API ID of the app group this user belongs to",
"app_id" : "(optional, string) API ID of the app on which this event occurred",
"archived" : "(optional, boolean) When set to True, indicates that this user was archived within Braze",
"country" : "(optional, string) [PII] Country of the user",
"custom_attributes" : "(optional, string) Valid JSON string of the updated custom attributes",
"dob" : "(optional, string) [PII] Date of birth of the user in format \"YYYY-MM-DD\"",
"email_address" : "(optional, string) [PII] Email address of the user",
"external_user_id" : "(optional, string) [PII] External ID of the user",
"first_name" : "(optional, string) [PII] First name of the user",
"gender" : "(optional, string) [PII] Gender of the user, one of ['M', 'F', 'O', 'N', 'P']",
"home_city" : "(optional, string) [PII] Home city of the user",
"id" : "(required, string) Globally unique ID for this event",
"language" : "(optional, string) [PII] Language of the user",
"last_name" : "(optional, string) [PII] Last name of the user",
"phone_number" : "(optional, string) [PII] Phone number of the user in e.164 format",
"time" : "(required, int) UNIX timestamp at which the event happened",
"time_ms" : "(required, long) Time in milliseconds when the update happened",
"timezone" : "(optional, string) Time zone of the user",
"update_source" : "(required, string) The source of this update",
"user_id" : "(required, string) [PII] Braze user ID of the user who performed this event"
}