Step Ready To Pickup
Library mode params Encoding
In library mode, the configuration is set in the "stepsโ attribute.
URL Params Encoding
In web mode, you can change the default โTitleโ used in the order steps by configuring them through the URL parameter in each step
Remember that we require to comply with (UTF-8) encoding when sending query params. so that if your custom name string has whitespace, you should replace it with the symbol "%20".
ie: "stepReadyToPickup=Custom title to Ready To Pickup step" => stepReadyToPickup=Title%20to%20ready%20for%20pickup%20step"
Specific configuration parameters
Parameter Lib | Parameter Web | Description |
---|---|---|
steps.readyToPickup.title | stepReadyToPickup | String which will be used as display name during the Ready To Pickup order step |
Usage Example
You will see the following content
<!DOCTYPE html>
<head>
<title>LSW v3 Embed</title>
</head>
<body>
<div id="instaleap-lsw-v3"></div>
</body>
<script src="https://xandar-lsw-v3.instaleap.io/lib/step.js"></script>
<script>
const params = {
job: "myJob",
token: "myToken",
container: "#instaleap-lsw-v3",
steps: {
readytoPickup: {
title: 'Title to ready for pickup step',
}
},
}
window.instaleap.steps.render(params)
</script>
</html>
https://xandar-lsw-v3.instaleap.io/steps?job=myJoB&token=myToken&stepReadyToPickup=Title%20to%20ready%20for%20pickup%20step
You will see the following content:
Updated 7 days ago