Push API and Webhooks
A/B Testing
a/b testing for customers who want to try different application flows through jobylon you can pass the name of the a/b test as a query parameter on the jobylon url the query parameter should be called jbl ab test we will store it in the browser session storage for 30 minutes or until the session expires, whichever is shorter in other words, it will be stored for a maximum of 30 minutes if a new a/b testing query parameter is found on the url, the existing one will be overridden and the timeout will be reset to 30 minutes as long as the user ends up on the application form within 30 minutes, the a/b testing query parameter value will be stored with the application a ab test parameter is added to the application data sent to your webhook through the push api just add the ab test parameter when pushing to jobylon and the data will be stored in jobylon please ensure that the ab test parameter is less than 20 characters usecase example sequencediagram participant c as candidate participant w as web participant j as jobylon participant bi as bi c >>w follow link to site activate w note right of c session gets tagged\<br/> with a unique id \<br/> ex xyz123 w >>j follow link to jobylon deactivate w activate j note right of w link contains query\<br/> parameter ab test \<br/> ex ?ab test=xyz123 j >>j candiate applies to job alt bi db access note right of j nightly export to\<br/> dedicated database\<br/> hosted by jobylon\<br/> and accessed by\<br/> bi tool else csv export note right of j manual exported by\<br/> jobylon support\<br/> imported into bi\<br/> by client else webhooks j >>bi applicationevent\ created activate bi note right of j all application data\<br/> inc id, ab test bi >>bi process data and connect\<br/> to other data sources bi >>j deactivate bi deactivate j loop status changed activate j j >>bi applicationevent\ status changed activate bi note right of j all application data\<br/> inc id, ab test bi >>bi process data and add\<br/> status changes bi >>j deactivate bi deactivate j end end