curl --request PUT \
--url https://services.leadconnectorhq.com/store/setup/progress \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"altId": "6578278e879ad2646715ba9c",
"altType": "location",
"onboardingCompletedAt": "2023-11-07T05:31:56Z"
}
'{
"status": true,
"data": {},
"message": "Successfully created"
}It will update the store setup progress
curl --request PUT \
--url https://services.leadconnectorhq.com/store/setup/progress \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"altId": "6578278e879ad2646715ba9c",
"altType": "location",
"onboardingCompletedAt": "2023-11-07T05:31:56Z"
}
'{
"status": true,
"data": {},
"message": "Successfully created"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?