Order History via the API
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Order History via the API
Is there a way to get the logged in user's order history via the JSON API? I can't see to find this via the methods available.
Re: Order History via the API
You can use a GET request to the "order" endpoint to get the orders of the currently logged in customer:
https://aimeos.org/docs/Developers/Clie ... e_metadata
What you currently can't fetch using that endpoint are the order details.
https://aimeos.org/docs/Developers/Clie ... e_metadata
What you currently can't fetch using that endpoint are the order details.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, give us a star
If you like Aimeos, give us a star
Re: Order History via the API
All right, thank you!