Resources | system | metaVariableDynamic

metaVariableDynamic

The Meta variable name and value pair table configurable by the user.

Configuration

ParameterPresenceTypeDefaultDescription
ceNameMstring Identifies the instance.
nameMstring The name of Meta Variable.
valueMstring The value of Meta Variable - string of 255 bytes
REST API: GET Example

curl -kisu 'admin:secret' -X GET https://{SBX-SERVER}/api/config/system/metaVariableDynamic/{ceName},{name}

REST API: POST Example

curl -kisu 'admin:secret' -X POST -H 'Content-Type: application/vnd.yang.data+xml' https://{SBX-SERVER}/api/config/system --data '
<metaVariableDynamic>
     <ceName>{ceName}</ceName>
     <name>{name}</name>
     <value>{value}</value>
</metaVariableDynamic>
'

REST API: DELETE Example

curl -kisu 'admin:secret' -X DELETE https://{SBX-SERVER}/api/config/system/metaVariableDynamic/{ceName},{name}

  • No labels