Listing all Security Objects Updated on Dec 10, 2024 Published on May 30, 2024 Prev Next The getSecurityObjects API returns a list of all security objects that the currently authorized entity can access. This supports some filter and sort parameters.
C# SecurityObjectsApi sObjectApi = new SecurityObjectsApi();
List<KeyObject> sObjects = sObjectApi.GetSecurityObjects();Go keys, err := client.ListSobjects(ctx, nil)Java SecurityObjectsApi sobjectsApi = new SecurityObjectsApi();
List<KeyObject> allKeys = sobjectsApi.getSecurityObjects(null, null, null);Python api_instance = sdkms.v1.SecurityObjectsApi(api_client=client)
sobjects = api_instance.get_security_objects()
REST API using curl curl <Endpoint URL>/crypto/v1/keys -H 'Authorization: Bearer YhXwwa-6C...ig5g'
Was this article helpful?
Yes No
Related articles
Fortanix Data Security Manager (DSM) > Developer Guide - Developer Operations > Example Code
Fortanix Data Security Manager (DSM) > Developer Guide - Developer Operations > Example Code
Fortanix Data Security Manager (DSM) > Developer Guide - Developer Operations > Plugin library
Fortanix Data Security Manager (DSM) > Developer Guide - Developer Operations > Example Code
Fortanix Data Security Manager (DSM) > Developer Guide - Developer Operations > Example Code
Fortanix Data Security Manager (DSM) > Developer Guide - Developer Operations > Fortanix DSM SDK for Java
Fortanix Data Security Manager (DSM) > Developer Guide - Developer Operations > Example Code