Applies an action using the given parameters. Changes to the Ontology are eventually consistent and may take some time to be visible.
Note that parameter default values are not currently supported by this endpoint.
Third-party applications using this endpoint via OAuth2 must request the
following operation scopes: api:ontologies-read api:ontologies-write
.
string
The unique Resource Identifier (RID) of the Ontology that contains the action. To look up your Ontology RID, please use the List ontologies endpoint or check the Ontology Manager.
string
The API name of the action to apply. To find the API name for your action, use the List action types endpoint or check the Ontology Manager.
object
map<ParameterId, DataValue>
1
2
3
4
5
curl -X POST \
-H "Content-type: application/json" \
-H "Authorization: Bearer $TOKEN" \
"https://$HOSTNAME/api/v1/ontologies/ri.ontology.main.ontology.c61d9ab5-2919-4127-a0a1-ac64c0ce6367/actions/rename-employee/apply" \
-d '{"parameters":{"id":80060,"newName":"Anna Smith-Doe"}}'
1
{}