Checkout started
This Callback hook is triggered when Checkout has started.
Request Body:
{
command: 'registerCallback',
version: 1.0,
method: 'POST',
data:
[
{
callbackCommand : 'Checkout',
hookName: 'checkoutStarted'
}
]
}
Response Body:
{
command: 'registerCallback',
version: 1.0,
method: 'POST',
responseType: 'registered',
Hooks:
[
{
callbackCommand : 'Checkout',
hookName: 'checkoutStarted',
status: 200,
message: 'Event registered successfully',
error: null
}
]
}
Triggered Callback Response Body :
{
command: 'registerCallback',
version: 1.0,
method: 'POST',
responseType: 'triggered',
callbackCommand : 'Product',
hookName: 'checkoutStarted',
data: {
customerEmail : '[email protected]',
cartBalance :
}
}
Updated over 1 year ago