How does the API work in the backend?

402
1
Jump to solution
05-31-2018 08:28 AM
GajananBalasubramaniam1
New Contributor III

Lets say you are creating groups or adding users to groups, what is the API call actually doing in the back-end? Is it utilizing the REST API? or is it directly interacting with the DB? 

Tags (3)
0 Kudos
1 Solution

Accepted Solutions
JoshuaBixby
MVP Esteemed Contributor

At its core, the ArcGIS API for Python is a Python wrapper to the ArcGIS REST API.   That said, the ArcGIS API for Python has expanded its functionality over time to work with local geometry libraries, currently either ArcPy or Shapely.

You can run Fiddler or a similar program to see the REST calls being made to AGOL or ArcGIS Enterprise.

View solution in original post

1 Reply
JoshuaBixby
MVP Esteemed Contributor

At its core, the ArcGIS API for Python is a Python wrapper to the ArcGIS REST API.   That said, the ArcGIS API for Python has expanded its functionality over time to work with local geometry libraries, currently either ArcPy or Shapely.

You can run Fiddler or a similar program to see the REST calls being made to AGOL or ArcGIS Enterprise.