POST Config/WriteDn
Replaces all value instances on objects with one or more new values.
Requirements
- Permissions: The caller must have Write permission to the requested object and View permission to the object being assigned to its DN attribute.
- Token scope: Configuration:Manage
Headers
-
Content type: Content-Type:application/json.
- Token: The bearer access token that you received. For example, Authorization:Bearer 4MyGeneratedBearerTknz==. For more information, see Passing a bearer token in your API calls.
Parameters
Name |
Description |
---|---|
ObjectDN |
The Distinguished Name (DN) of the object. |
AttributeName |
The name of the attribute to write values. For more information, see How to find class names and attributes. |
Values |
The values to write to the attribute. |
Returns
Name |
Description |
---|---|
HTTP 200 |
For valid requests, this call returns a HTTP 200 message and the following data in the message body:
|
HTTP 400 |
For invalid requests, this call returns a HTTP 400 BadRequest and the following data in the message body:
|
Example: Globally replace DN attribute values
Request
POST https://tpp.venafi.example/vedsdk/Config/WriteDn Authorization:Bearer 4MyGeneratedBearerTknz== { "Locked":true, "ObjectDN":"\\VED\\Policy\\TestPolicy", "Class":"JKS", "AttributeName":"KeyStore", "Values":[ "/etc/crypto/common.jks" ] }
Response
HTTP/1.1 200 OK { "Result":1 }