Skip to main content

Hi,

I am struggling to read the content of a layer published to ESRI portal. I have a  _website_url

https://gis-eu.xxx.com/arcgis/rest/services/LayerTest_Pt_01/FeatureServer/0

for ESRI portal layer.

 

For example I need to get Item Id

 

HTTP_Caller does not get this info in _response_body

I have managed to make it work. However, how can I get the Service Item Id: from the sting

 

<b>Display Field:</b> objectid<br/><br/>
<b>Type: </b> Feature Layer<br/><br/>
<b>Geometry Type:</b> esriGeometryPoint<br/><br/>
<b>Description: </b> <br/><br/>
<b>Service Item Id: </b> 4c0f943fb60a4a369104f33d1ad2af4f<br/><br/>


It’s going to be easier to retrieve the information you need if you get the initial call to return json so 

 

?f=pjson

 

on the end of your request

 

Then a jsonextractor

 


Hi, 

 

How can I get this info in json format

 


The request just needs to the ?f=pjson appending at the end, e.g.

 

….LayerTest_Pt_01/FeatureServer/0?f=pjson

 


Such an easy fix. Thank you very much!!!

 

 

 


Reply