User Behavior
Recommender solution collects data based on user explicit behavior input through the following mentioned endpoints. Now we will know about the purpose of user behavior endpoints and how to access them.
Browse
Request path:
POST /v1/browse
This endpoint captures user browsing information and saves them to the database. It takes user_id and item_id as required parameters.
Request path:
POST /v1/browse/save
If you want to save your data with bulk upload you can use above mentioned endpoint. Before saving your data you need to build mapper successfully.
Purchase
Request path:
POST /v1/purchase
This endpoints captures user purchase info and save it to the database. It takes user_id, item_list which includes item_id, price, quantity for a specific item as required parameters.
Request path:
POST /v1/purchase/save
If you want to save your data with bulk upload you can use above mentioned endpoint.
Rating
Request path:
POST /v1/rating
This endpoint captures user's given ratings positive or negative on a specific item and save them to the database. It takes user_id, item_id, and rating for the specific item as required parameters.
Request path:
POST /v1/rating/save
If you want to save your data with bulk upload you can use above mentioned endpoint.
Rating
Request path:
POST /v1/rating
This endpoint captures user's given ratings positive or negative on a specific item and save them to the database. It takes user_id, item_id, and rating for the specific item as required parameters.
Request path:
POST /v1/rating/save
If you want to save your data with bulk upload you can use above mentioned endpoint.
User
Request path:
POST /v1/user
This endpoint captures user's given ratings positive or negative on a specific item and save them to the database. It takes user_id and user_info as required parameters and member_id as optional parameter.
Request path:
POST /v1/user/save
If you want to save your data with bulk upload you can use above mentioned endpoint.