POST Config/EnumerateAll
Returns all Config objects matching the specified pattern for the Distinguished Name (DN).
Requirements
- Permissions: In order for the enumeration to work properly, the caller must have View permission to the requested object.
- Token scope: Configuration
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 |
---|---|
Pattern |
An expression for filtering DN matches:
|
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 HTTP 400 Bad Request and the following data in the message body:
|
Example: Find Config objects
Request
POST https://tpp.venafi.example/vedsdk/Config/EnumerateAll Authorization:Bearer 4MyGeneratedBearerTknz== { "Pattern":"*devi*" }
Response
HTTP/1.1 200 OK { "Objects":[ { "AbsoluteGUID":"{dc817d30...}{35df8f14...}{3d7e8e7b...}{21508a66...}{705f8c7b...}", "DN":"\\VED\\Clients\\Work\\UA-SSH-test\\ssh device placement work", "GUID":"{705f8c7b-7064-403d-82e4-6076b229cf55}", "Id":5855, "Name":"ssh device placement work", "Parent":"\\VED\\Clients\\Work\\UA-SSH-test", "Revision":635636047565094643, "TypeName":"Client Agent Device Placement Work" }, { "AbsoluteGUID":"{dc817d30...{db3354d9...}{8d9549fb-6fa3...}{c80813bd...}", "DN":"\\VED\\Policy\\EMEA\\Test Device 12", "GUID":"{c80813bd-d708-48d8-85f4-06859bdd26a3}", "Id":8186, "Name":"Test Device 12", "Parent":"\\VED\\Policy\\EMEA", "Revision":636081393195417562, "TypeName":"Device" } ], "Result":1 }