To create service for scanning in SecureSphere: -Authenticate to generate token curl -X GET \ https://192.168.2.5:8083/SecureSphere/api/v1/auth/session \ -H 'Authorization: Basic Ynot_a_real_keyiY28xMjM=' \ -H 'Postman-Token: 5ac97c54-848f-491b-af88-ccca06c8f803' \ -H 'cache-control: no-cache' -For an existing server group, create a service: curl -X POST \ https://192.168.2.5:8083/SecureSphere/api/v1/conf/dbServices/APITest/APITestGroup/ServiceName \ -H 'Content-Type: application/json' \ -H 'Postman-Token: 52b93826-a266-4645-9bf0-245813e2c6b9' \ -H 'cache-control: no-cache' \ -d '{ "db-service-type":"MsSql", "ports":[1433] } ' -Add Protected IP to the server group curl -X POST \ 'https://192.168.2.5:8083/SecureSphere/api/v1/conf/serverGroups/APITest/APITestGroup/protectedIPs/1.2.3.4?gatewayGroup=SecureSphereGateway' \ -H 'Content-Type: application/json' \ -H 'Postman-Token: e5e291da-0269-433d-b7fb-f827150e5472' \ -H 'cache-control: no-cache' \ -d '{ "comment":"Some comment" } ' -Create a DB connection for the service curl -X POST \ https://192.168.2.5:8083/SecureSphere/api/v1/conf/dbServices/APITest/APITestGroup/ServiceName/dbConnections/ConnectionName \ -H 'Content-Type: application/json' \ -H 'Postman-Token: 229fb2ea-9436-4886-8193-fdcccfe7b111' \ -H 'cache-control: no-cache' \ -d '{ "ip-address": "1.2.3.4", "user-name": "admin", "password": "1234", "db-name": "orcl", "port": "1234" } ' In the GUI, create a scan. -Add that server to a scan using Update Classification Scan Let the scan run on schedule, then -Get Classification Scan Results