Corrily supports anonymous users who might one day register and get a stable user_id. In general, converted users should always see the same price they saw on their first visit, before sign up. The flow for anonymous users will require you to send the user’s IP in the request payload or header. Corrily will remember the price displayed to the given IP, and will stick the registered user to this price on the first API call where bothDocumentation Index
Fetch the complete documentation index at: https://docs.corrily.com/llms.txt
Use this file to discover all available pages before exploring further.
ip and user_id fields are present.
How the flow works
- For anonymous users send an
ipwithout anyuser_id:{“ip”: “XXX.XXX.XXX.XXX”} -> price1 - The
ipis now tied to the above price. When a user converts and theiruser_idis known, send both theiripanduser_id:{“ip”: “XXX.XXX.XXX.XXX”, “user_id”: “user1”} -> price1 - After the above call, the user will be tied to
price1. Requests with onlyuser_idwill now always be tied to the same price and any anonymous users visiting with the sameiplikewise.