⁜ Obelism Improve

Analytics

Endpoint that receives post messages to keep track of visitors and their progress. Used to calculate the conversion of tests.

Url

https://improve.obelism.studio/api/log

  • Method: POST

Type

type createAnalytics = {
	testId: string
	testValue: string
	visitorId: string
	event: string
	message?: string | undefined
 
	pointer: 'coarse' | 'fine'
	device:
		| 'wearable'
		| 'mobile'
		| 'tablet'
		| 'console'
		| 'smarttv'
		| 'embedded'
		| 'desktop'
	browser:
		| 'chrome'
		| 'safari'
		| 'firefox'
		| 'edge'
		| 'ie'
		| 'samsung internet'
		| 'social'
		| 'other'
	os: 'mac os' | 'ios' | 'android' | 'windows' | 'unix'
	screen: 'small' | 'medium' | 'large' | 'huge'
	visitor: 'recurring' | 'new'
}

On this page