|
POST
|
Hi @ZianChoy, Anything else we can do to help? Thanks! P.S. I'll wait a few days, and if there is no more activity I'll accept my previous response as "Solution" to move on 😉
... View more
05-31-2022
03:44 AM
|
0
|
0
|
3535
|
|
POST
|
Hi @xxwwyytt, Just curious, your app is web or mobile/desktop? I'm not 100% sure what you mean by: include similar functionalities of quick capture into our app, so I'm wondering if we can use the ArcGIS REST API to create something like that in our app But if you mean hosting data and collaborating, yes you can, here some resources to help you get started with that: Hosted feature layers Feature service Data hosting collection in Postman Note: just in case you don't know this, Hosted Feature Layers also support WebHooks and Layer views for a real-time and fined-grain layer control. If you are looking for something different let me know.
... View more
05-31-2022
03:36 AM
|
0
|
0
|
723
|
|
POST
|
Hi Jason, I'm more a JS developer. I have never sent the token in the header, I have always send the token as another parameter. It would help to see a copy of both CURL requests (removing the tokens/domains) to better understand what might be happening, but it doesn't make sense to me either. I'm going to share a few resources that might help you with this: "Security and authentication > Capability comparison" shows a summary table displaying differences between the different authentication methods ArcGIS REST JS -> Authentication this open source library aims to help JS developers to work with ArcGIS services (this is a really good talk about it); I have noticed there is no example using username and password ArcGIS Location Services Postman Workspace <- This only contains examples for ArcGIS Online and Platform, but you can see how all requests send the token as a parameter. I hope this helps
... View more
05-31-2022
03:12 AM
|
1
|
0
|
1783
|
|
POST
|
Hi @MohamedG, I'm not very familiar with services referencing Feature Class in an Enterprise GDB, but just in case you don't know this, Hosted Feature Layers can be enabled for Feature collection (and can be limited for add, delete and update attributes only or attributes and geometry): Probably being a reference service the options will be different... Another "workaround" if nobody else help us here would be to create a Hosted Feature Layer and sync both services using Python, REST JS or the REST API directly. Not sure if Integromat (now called Make.com), Zapier, Power Automate or Tray.io would be able to connect to an Enterprise service. I hope this helps
... View more
05-31-2022
02:49 AM
|
0
|
0
|
1194
|
|
POST
|
Hi @svdklei , Get traceontwerp geometry based on projectnummer from the feature service IndexError: list index out of range It seems pretty clear to me that this is a problem with the input parameters, I imagine that's why you are getting an empty response. So considering that submitting the job through the REST HTML interface works successfully, I would copy the network requests being sent (as "CURL") and import them into Postman (File > Import > Raw text). Hopefully, that will help you find the differences between the input you are sending right now and the one from the HTML interface (that's how I solve many of the problems I have).
... View more
05-31-2022
02:35 AM
|
0
|
0
|
965
|
|
POST
|
Sorry @SteveWaldron for the delay. I would recommend three resources: Mapping APIs and location services guide > "Search" chapter "Geocoding & Search API" collection in Postman "Geocoding service" API spec Just keep in mind that the URL will be different (check Geocode Service), but besides that everything should be pretty similar. As client APIs you have one in Python and one in JavaScript/Node.js. I hope this helps!
... View more
05-31-2022
12:26 AM
|
0
|
0
|
566
|
|
POST
|
Hi Matt, I don't have access admin privileges to any ArcGIS Online organization right now (I only use ArcGIS Developer accounts), but a long time ago I did this documentation explaining how to check the detailed credit consumption, I remember it was possible to query and filter per FeatureService. If you are able to find it, you will be able to check the network requests to better understand how to query it through the REST API because I don't think it is documented on the developer site. I hope the resources on that page are helpful. If after checking you still need help let me know.
... View more
05-31-2022
12:19 AM
|
0
|
1
|
1327
|
|
POST
|
Hi @JAARSSoftwareDevelopment , You are right, the "fields" property describes the columns of that table, apparently there is no "clt" field: You can also check the layer description like this: https://services6.arcgis.com/ssFJjBXIUyZDrSYZ/arcgis/rest/services/US_Airport/FeatureServer/0?f=json This is how it looks: The first image is the response in .../FeatureServer/0/query?.... The second one is from .../FeatureServer/0?f=json. As you can see in the developer site, the "type" field can be: esriFieldTypeBlob | esriFieldTypeDate | esriFieldTypeDouble | esriFieldTypeGeometry | esriFieldTypeGlobalID | esriFieldTypeGUID | esriFieldTypeInteger | esriFieldTypeOID | esriFieldTypeRaster | esriFieldTypeSingle | esriFieldTypeSmallInteger | esriFieldTypeString | esriFieldTypeXML. Where: OID = Object ID; GUID = Global Unique IDentifier, ... more about ArcGIS field data types. Related to this comment: I want to check if there are any new objects or if any of them have been updated You have two options: Enable editor tracking if you want to check changes manually Or use Web Hooks if you want to customize notifications -> Resources: Blog post: Create a hosted feature service webhook Video: Getting Started with Hosted Feature Layer Webhooks I hope this helps.
... View more
05-30-2022
11:20 PM
|
0
|
0
|
1163
|
|
POST
|
Hi René, I guess you mean through the REST API, right?. If the feature class has been published as a FeatureLayer you have a query operation. Here a couple of resources: In the guide you have some examples using the ArcGIS Runtime API for .NET And you can also export some code from the Data Hosting collection in Postman In both cases the URL is pointing ArcGIS Online, you just need to change it to the right server. Hope this helps.
... View more
05-30-2022
11:04 PM
|
0
|
1
|
867
|
|
POST
|
Hi Matej, As you can check in the ArcGIS Platform pricing page, it does not offer yet a free tier for are not included for spatial analysis tools yet, but we are working on this. For now, the only way to enable that button with an ArcGIS Platform account is to enable pay as you go. Said that I think you should be able to create a layer view as a result of joining two layers (since it has no cost) through the REST API. Here I shared a Postman collection that does that, maybe it can help you, but the easiest/quickest way would be: Enable pay as you go Do the join (no cost) Disable pay as you go I hope this helps!
... View more
05-26-2022
10:54 PM
|
0
|
0
|
1522
|
|
POST
|
As John highlighted, my two cents would go for the encoding of the address. You can avoid encoding it if you uses a POST request instead.
... View more
05-13-2022
11:34 PM
|
0
|
0
|
4132
|
|
POST
|
Have you tried: try{
// ...
}catch(e){
console.log("Error: ", e);
} It might be an HTML been responded by the API?
... View more
05-13-2022
07:46 AM
|
0
|
2
|
4156
|
|
POST
|
Hi @herasey, This request is working for me: https://geocode-api.arcgis.com/arcgis/rest/services/World/GeocodeServer/findAddressCandidates?token=MY_API_KEY&f=pjson&singleLine=1600%20Pennsylvania%20Ave%20NW,%20DC&forStorage=false&maxResults=1 It sounds like your API key is not configured correctly (API key configuration panel). Note: any changes on that configuration can take up to 10min to propagate across the different servers Maybe you can test it using the Geocoding Postman collection we made available. I hope that helps.
... View more
05-13-2022
04:45 AM
|
0
|
2
|
3076
|
|
POST
|
Hi Zian, Thank you for your question. In terms of security, we strongly recommend always setting referrers among other things you can read here. To learn how to create API keys programmatically, you can refer to this Postman collection you can use the createApiKey function implemented in ArcGIS REST JS. About monitoring usage you are right, from an organizational point of view there is no dashboard to monitor the use of all API keys. If I am not wrong it is something that is being worked on, just in case I have checked ArcGIS Ideas, but I haven't seen that idea being shared. I recommend you to request that feature in this forum, if you do, please explain to us what functionality/filters/etc you would like to find there. This is the best way to share your requests with the product teams. If you have an example of the ideal dashboard you would like to see, please feel free to share it with other colleagues. The most upvotes it receives, the better.
... View more
05-13-2022
04:19 AM
|
0
|
4
|
3550
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-25-2023 03:27 AM | |
| 3 | 07-11-2025 08:28 AM | |
| 1 | 06-09-2025 08:42 AM | |
| 1 | 02-18-2025 03:33 AM | |
| 2 | 02-18-2025 01:14 AM |
| Online Status |
Offline
|
| Date Last Visited |
12-15-2025
04:11 AM
|