As per the available documentation, we can use the 'Create an entry in an organization-scoped KVM (CPS)' API to add an additional entry into an existing KVM. This involves sending the entry as a JSON/XML payload.
{"name":"aaa", "value": "AAA"}
I was wondering if there was any way to add multiple entries using a single management API call. I tried using an array of JSON objects
[{"name":"aaa","value": "AAA"},{"name":"bbb","value": "BBB"}]
but this doesn't work. Any suggestions?