Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 2.31 KB

File metadata and controls

68 lines (48 loc) · 2.31 KB

ConnectionLog

Connection event log showing account connection/disconnection history

Properties

Name Type Description Notes
id String [optional]
userId String User who owns the connection (may be null for early OAuth failures) [optional]
profileId String [optional]
accountId String The social account ID (present on successful connections and disconnects) [optional]
platform PlatformEnum [optional]
eventType EventTypeEnum Type of connection event: connect_success, connect_failed, disconnect, reconnect_success, reconnect_failed [optional]
connectionMethod ConnectionMethodEnum How the connection was initiated [optional]
error ConnectionLogError [optional]
success ConnectionLogSuccess [optional]
context ConnectionLogContext [optional]
durationMs Integer How long the operation took in milliseconds [optional]
metadata Object Additional metadata [optional]
createdAt OffsetDateTime [optional]

Enum: PlatformEnum

Name Value
TIKTOK "tiktok"
INSTAGRAM "instagram"
FACEBOOK "facebook"
YOUTUBE "youtube"
LINKEDIN "linkedin"
TWITTER "twitter"
THREADS "threads"
PINTEREST "pinterest"
REDDIT "reddit"
BLUESKY "bluesky"
GOOGLEBUSINESS "googlebusiness"
TELEGRAM "telegram"
SNAPCHAT "snapchat"

Enum: EventTypeEnum

Name Value
CONNECT_SUCCESS "connect_success"
CONNECT_FAILED "connect_failed"
DISCONNECT "disconnect"
RECONNECT_SUCCESS "reconnect_success"
RECONNECT_FAILED "reconnect_failed"

Enum: ConnectionMethodEnum

Name Value
OAUTH "oauth"
CREDENTIALS "credentials"
INVITATION "invitation"