Quick Start
API overview and sample queries
Authentication
Query specifications
curl -X 'POST' "$VEZA_URL/api/v1/assessments/query_spec:nodes?page_token-page_size=1" \
-H "authorization: Bearer $VEZA_TOKEN" \
-d '{
"node_relationship_type": "EFFECTIVE_ACCESS",
"query_type": "SOURCE_TO_DESTINATION",
"include_nodes": true,
"no_relation": false,
"source_node_types": {
"nodes": [
{
"node_type": "OktaUser",
"condition_expression": {
"specs": [
{
"id": "b952cf69-5e31-42e5-ae66-372a45b2045b",
"property": "mfa_active",
"fn": "EQ",
"value": false,
"not": false
}
],
"operator": "AND"
}
}
]
},
"destination_node_types": {
"nodes": [
{
"node_type": "S3Bucket",
"condition_expression": {
"specs": [
{
"id": "b78d3e44-0272-4023-ba34-33abaf608e7e",
"property": "block_public_acls",
"fn": "EQ",
"value": false,
"not": false
}
],
"operator": "AND"
}
}
]
}
}'Get destination nodes
Save a query
Get saved query result count or entity details
Last updated
Was this helpful?
