Delete Link Record §
The record will be submitted to the blockchain asynchronously.

The record owner deletes the previous link location via Event
The result is the new link Location of an empty record on the blockchain
The record owner stores the new link Location for later processing
Ideally, the record owner should check the status of the new link location
Example code:
curl -X POST $URL/api/v1/linkedrecords/$LOC/delete \
-H "x-api-key: $KEY" \
-H "accept: text/plain"const response = await fetch('${url}/api/v1/linkedrecords/${loc}/delete', {
method: 'POST',
headers: {
'x-api-key': '$KEY',
'accept': 'text/plain'
}
});Example cURL response:
{
"txId": "880ea79ee5728333....390cdecd1a9686b4bd"
}LOC=880ea79ee5728333....390cdecd1a9686b4bdconst data = await response.json();
const loc2 = data.txId;Last updated