Skip to content

List posture profiles

GET
/api/v1/posture/profiles
curl --request GET \
--url https://osctrl.net/api/v1/posture/profiles \
--header 'Authorization: <Authorization>'

Returns predefined posture check profiles for different node types.

OK

Media typeapplication/json
Array<object>
object
description
string
id
string
name
string
platform
string
queries
object
key
additional properties
object
interval
integer
platform
string
query
string
query_name
string
snapshot
boolean
Examplegenerated
[
{
"description": "example",
"id": "example",
"name": "example",
"platform": "example",
"queries": {
"additionalProperty": {
"interval": 1,
"platform": "example",
"query": "example",
"query_name": "example",
"snapshot": true
}
}
}
]