ctm.autoExitPresenter

The method of JS Bridge functionality is intended to exit from the CLM presentation without confirmation. Available in the Sales CT Orders.

Query Format

ctm.autoExitPresenter(handler)

Handler

Use a handler function to describe the output format of the query results, e.g., to display the results of operations or method errors for debugging purposes.

ctm.autoExitPresenter(handler)
ctm.autoExitPresenter(function(response){
    console.log('Exiting', response);
})

The results:

{
    "success": true,
}
``