Hey all, I've been looking into how to automatically fill a weather field with a string created from current weather conditions where the point is collected. I've been using this page: Data enrichment with ArcGIS QuickCapture and Integromat that @IsmaelChivite posted several years ago. Since then, Integromat has rebranded to Make, but the structure of the site is the same.
I have been able to link my QuickCapture project and generate a string of weather information for the point collected. I am having an issue on the last step, getting that data put into the feature layer on Arc Online. Below is what I currently have in the HTTP, which is error free, but not returning the information where I want it.
URL {{1.projectInfo.serviceUrl}}/{{1.feature.layerInfo.name}}/updateFeatures
Method POST
Item 1
Key -> f
Value -> html
Item 2
Key -> features
[
{
"attributes": {
"GlobalID" : "{{1.feature.attributes.GlobalID}}",
"weather" : "{{3.value}}",
}
}
]
Item 3
Key -> token
Value -> {{1.portalInfo.token}}
Any advice is appreciated!