Skip to main content
Solved

Acumatica Customer data scrapping.

  • April 2, 2024
  • 3 replies
  • 142 views

Forum|alt.badge.img+3

Hi all, Hope you guys are doing good. I am trying to get customer data from my Acumatica instance using some script. Is there any API/endpoint available to get the customer screen field/data together and using code. Please guide me in this . Thanks

Best answer by Leonardo Justiniano

Hi @tahayabali 

You have several options

https://<INSTANCE>/odatav4/<TENANT>/PX_Objects_AR_Customer?$skip=0&$top=10

 You can also work with the specific API endpoint: Web Service Endpoint

Find here some C# code for the client side in Github

Hope this info gives you where to start.

3 replies

Leonardo Justiniano
Jr Varsity II
Forum|alt.badge.img+4

Hi @tahayabali 

You have several options

https://<INSTANCE>/odatav4/<TENANT>/PX_Objects_AR_Customer?$skip=0&$top=10

 You can also work with the specific API endpoint: Web Service Endpoint

Find here some C# code for the client side in Github

Hope this info gives you where to start.


Forum|alt.badge.img+3
  • Author
  • Captain I
  • April 2, 2024

Can i do scripting in python or only C# is the option?

 


Leonardo Justiniano
Jr Varsity II
Forum|alt.badge.img+4

Hi @tahayabali 

Yes you can do scripting in Python. You just need to know which endpoints to use and how (GET, PUT, POST). You will need also credentials. Sorry I am not that versed in Python to provide you with an example.