As this title says.
e.g.
I would like to know if the same applies to Apply Action Batch.
API Reference: actions/apply-action-batch
curl -X POST \
-H "Content-type: application/json" \
-H "Authorization: Bearer $TOKEN" \
"https://$HOSTNAME/api/v2/ontologies/{ontology}/actions/{action}/applyBatch" \
-d '{
"options": {
"dryRun": true
},
"requests": [
{
"parameters": {
"id": 80060,
"newName": "Anna Smith-Doe"
}
},
{
"parameters": {
"id": 80061,
"newName": "Joe Bloggs"
}
}
]
}'