Here is the scenario, i would like to read the POS sales receipt though an ASP.net web API and get the details of transaction and other details involved using a Third Party API and get back the details.
I would like to know how to do read the sales receipt using ASP.net web API, what are all the parameter to look for and the third party API service to get the transactions details.
Any information related to this is helpful and much appreciated.
This will all depend on the POS system you are trying to connect to. It may or may not supply an api to do what you want. Check with the manufacturer of the POS system.
Thanks Bruce, Basically i am trying build Generic ASP.net web API to read any POS receipt and get the details of transaction through third Party API endpoint. Are there any API that provides transaction details based on transaction ID
Basically i am trying build Generic ASP.net web API to read any POS receipt and get the details of transaction through third Party API endpoint. Are there any API that provides transaction details based on transaction ID
In my opinion, there are no existing generic APIs/Services that can help handle all kind of POS receipt and
transaction details, if you'd like to build the HTTP service for doing with POS receipts, you had better to contact POS system provider(s) for further help.
With Regards,
Fei Han
.NET forums are moving to a new home on Microsoft Q&A, we encourage you to go to Microsoft Q&A for .NET for posting new questions and get involved today.
Thanks Bruce, Basically i am trying build Generic ASP.net web API to read any POS receipt and get the details of transaction through third Party API endpoint. Are there any API that provides transaction details based on transaction ID
every POS vendor has their own api (though some may not support any, or may be an addition option to purchase). You need to get the api kit for each vendor you want to support. This is a good case for using the IOC and factory patterns.
None
0 Points
3 Posts
How to get Transaction details from a POS Receipt through a web API
May 29, 2019 02:28 PM|panduselangovan|LINK
Hi All,
Here is the scenario, i would like to read the POS sales receipt though an ASP.net web API and get the details of transaction and other details involved using a Third Party API and get back the details.
I would like to know how to do read the sales receipt using ASP.net web API, what are all the parameter to look for and the third party API service to get the transactions details.
Any information related to this is helpful and much appreciated.
Thanks
Pandu
All-Star
58254 Points
15674 Posts
Re: How to get Transaction details from a POS Receipt through a web API
May 29, 2019 03:50 PM|bruce (sqlwork.com)|LINK
This will all depend on the POS system you are trying to connect to. It may or may not supply an api to do what you want. Check with the manufacturer of the POS system.
None
0 Points
3 Posts
Re: How to get Transaction details from a POS Receipt through a web API
May 29, 2019 04:33 PM|panduselangovan|LINK
Thanks Bruce, Basically i am trying build Generic ASP.net web API to read any POS receipt and get the details of transaction through third Party API endpoint. Are there any API that provides transaction details based on transaction ID
All-Star
40565 Points
6233 Posts
Microsoft
Re: How to get Transaction details from a POS Receipt through a web API
May 30, 2019 05:28 AM|Fei Han - MSFT|LINK
Hi Pandu,
Welcome to ASP.NET forums.
In my opinion, there are no existing generic APIs/Services that can help handle all kind of POS receipt and transaction details, if you'd like to build the HTTP service for doing with POS receipts, you had better to contact POS system provider(s) for further help.
With Regards,
Fei Han
All-Star
58254 Points
15674 Posts
Re: How to get Transaction details from a POS Receipt through a web API
May 30, 2019 03:36 PM|bruce (sqlwork.com)|LINK
every POS vendor has their own api (though some may not support any, or may be an addition option to purchase). You need to get the api kit for each vendor you want to support. This is a good case for using the IOC and factory patterns.