Hello All,
I'm creating a web app that will allow additional feature information to be saved via page to a DB and need to add a link to the feature dynamically. The only way I see to do this is via REST but I'm unsure if this can be done via REST as the info is stored in the External Reference table, not the Feature table, and needs its own unique ID
A GET gets me the following
"links": [
{
"id": 62,
"name": "Test1",
"link": "https://xxxxxxxxxxxxx.azurewebsites.net"
}
],
Using the following as PATCH wont work ( I know the value is wrong, it needs to be like above but how would I get an ID? )
[
{
"value": "https://xxxxxxxxxxxxxx.azurewebsites.net",
"path": "/links",
"op": "replace",
}
]
Any thoughts on how to do this?