Skip to main content
When you retrieve conversions using the SDK or API, the conversion data is returned as a structured object. The structure below represents the conversion format:
interface Conversion {
    id: number
    uniqueId: string
    data: Ip
    status: string
    startedAt: string
    completedAt: string | null
    createdAt: string
    credited: boolean
    convertOnly: boolean
}