Process Recommendation

This endpoint will trigger our engine to train your data (process recommendation).

POST#

https://api.altoshift.com/recommendation/process

Request Body#

FieldTypeDescription
tokenStringIdentifier of recommendation engine, use x-token when hit this endpoint
confidence optionalNumberConfidence threshold for training

Request Body Example#

{
"token": "689d33d6a77573a37e0fbe1bc4a4ecf2",
"confidence": 0.2
}

Success 200#

FieldTypeDescription
successBooleanRequest was successful
processIdStringId of the training process

Success Response Example#

{
"success": true,
"processId": "5f61967d682d690192230034"
}