# Activity Welcome to the Activity API documentation for Annex Cloud! Here, we are excited to guide you through the dynamic world of loyalty-based interactions and engagement. Our Activity API empowers you to seamlessly integrate and enhance your loyalty program with real-time activity tracking, enabling you to craft personalized experiences for your valued customers. In this comprehensive guide, you will find everything you need to know to leverage the full potential of our Activity API. Whether you are a seasoned developer looking to integrate our API into your existing systems, or a business visionary seeking to create innovative loyalty solutions, we have got you covered. From tracking points accumulation and rewards redemption to monitoring user interactions and crafting targeted campaigns, our Activity API opens doors to a new realm of customer engagement possibilities. We understand the significance of fostering lasting relationships with your clientele, and this API paves the way for fostering those connections in meaningful and profitable ways. Through easy-to-follow examples, detailed endpoints, request and response formats, this documentation will empower you to harness the power of our Activity API effectively. Explore the API, experiment with its capabilities, and unlock the potential to redefine loyalty experiences for your customers. The possibilities are boundless, and the rewards are waiting. Let us get started! ## Fetch the activity details - [GET /users/{{memberId}}/activity/](https://annexcloud.redocly.app/loyalty/loyalty/activity/getactivityqueryreq.md): This method allows for the retrieval of details about performed activities. The following paths can be utilized to display the activities. Below are a few examples that show how you can combine query parameters - GET: /users/{{email_id}}/activity?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&page=1 - This method is used to display the activity details by passing the date range and page number. For example, if the start and end dates are 2021-01-01 and 2022-12-21 respectively, and page=1, all activities performed between those dates and listed on page 1 are displayed here. GET: /users/{{email_id}}/activity?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&numberOfActivities=5 - This method is used to display the activity details activity details by passing the date range and the number of activities. For example, if the start and end dates are 2021-01-01 and 2022-12-21 respectively, and the number of activities = 5, just 5 activities per page that were created between these date ranges are displayed. GET: /users/{{email_id}}/activity?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&numberOfActivities=5&page=5 - This method is used to display the activity details activity details by passing the date range, number of activities, and page number. For example, if the start and end dates are 2021-01-01 and 2022-12-21, respectively, and the number of activities = 5, then just the 5 activities created between these date ranges and listed on page number 5 are displayed. The response body for all the activity API is the same as the response body of GET: /users/{id}/activity method.