Get Offering tree Policies
GET/api/v1/catalog/offering/policy
Retrieves all offering tree policy. Filter by platform, device-type and project.
Request
Query Parameters
platformId number
deviceTypeId number
projectId number
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
platformId number
deviceTypeId number
projectId numberrequired
catalogId string
latest booleanrequired
rules
object[]
required
Filter rules that define which releases agents can access
type stringrequired
Possible values: [EXACT, RANGE]
EXACT matches a single catalogId, RANGE matches a semver range
value stringrequired
catalogId for EXACT, semver range for RANGE
allowedCatalogIds string[]required
Pre-computed catalogIds allowed by the rules
allowedCount numberrequired
How many versions currently match the rules
createdAt date-timerequired
updatedAt date-timerequired
[
{
"platformId": 0,
"deviceTypeId": 0,
"projectId": 0,
"catalogId": "string",
"latest": true,
"rules": [
{
"type": "EXACT",
"value": "string"
}
],
"allowedCatalogIds": [
"string"
],
"allowedCount": 0,
"createdAt": "2026-09-10T14:32:46.201Z",
"updatedAt": "2026-09-10T14:32:46.201Z"
}
]
Loading...