Reward Points on Mobile App

Hello,

I have the cs cart Reward Points add-on and want to fetch the data to my mobile app, anyone has documentation for that?

the data is not appeared on user profile, orders nor the products as well, when the customer make a purchase via mobile app , no points were added, but via app, everything is good

Most of the customer for sure use the mobile app, so I guess it will be useless or?

If there is other recommendation , tell me

Hi!

The only way to check the number of reward points via the API is to send a request to the Users entity and pass the extended_search=1 parameter in that request.

If the customer’s profile has any points, you’ll see something like this in the response:

	"points": "i:1000;",
{
	"user_id": "3",
	"user_login": "customer",
	"is_root": "N",
	"timestamp": "1116709280",
	"user_type": "C",
	"status": "A",
	"firstname": "Customer",
	"lastname": "Customer",
	"email": "customer@example.com",
	"company": "",
	"company_id": "0",
	"phone": "+7(777)777-77-77",
	"last_login": "1737101040",
	"company_name": null,
	"points": "i:1000;",
	"anonymized": null
}

Thanks so much, but still when customer make orders from mobile app, they do not earn points.

the API from users is to fetch the points from backend to mobile app, but there is no reward points on the API of Categories nor Products

Unfortunately, the standard Mobile Application does not work with Reward points. We already have a feature request to add support for this add-on in the mobile application, so I’ll add a +1 to it.