Get offerings for a project
GET/api/v2/catalog/offering/projects/:projectIdentifier
Retrieves all available component offerings for a specific project by project identifier. Optionally filter by platform and/or device type to narrow down the results.
Request
Path Parameters
Project identifier (ID or name)
Query Parameters
Device type identifier (ID or name)
Platform identifier (ID or name)
Indicates whether to include dependencies in the offering
Responses
- 200
- 404
- 500
Successfully retrieved project offering
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
Display name of the project
Label of the project
Identifier of the project
Name of the project
release
object
Human-readable display name of the project
Label associated with the project
metadata
object
Enable automatic deployment of this release
Installation size in bytes - disk space required after installation (user-specified)
postInstallAction
object
Executable path to run (required when type is EXE)
Possible values: [NONE, WEB, EXE]
Action type: NONE (no action), WEB (open URL), or EXE (run executable)
URL to open (required when type is WEB)
Total size in bytes - automatically calculated as installationSize + artifactsSize
policies
object[]
Policies associated with this release
association
object
required
releases
object[]
Associated releases for policies
Project name
Release version
Policy creation timestamp
Policy description
Policy rule ID
Whether the policy is active
Policy name
The policy rule definition conforming to rule engine schema
Possible values: [NONE, WEB, EXE]
Action type: NONE (no action), WEB (open URL), or EXE (run executable)
Policy last update timestamp
Policy version number
Possible values: [start, inProgress, done, error, delete, pending]
Possible values: [NONE, WEB, EXE]
Action type: NONE (no action), WEB (open URL), or EXE (run executable)
{
"displayName": "string",
"label": "string",
"projectId": 0,
"projectName": "string",
"release": {
"createdAt": "2026-04-22T16:58:12.352Z",
"dependencies": [
null
],
"displayName": "string",
"id": "string",
"label": "string",
"latest": true,
"metadata": {
"autoDeploy": true,
"installationSize": 0,
"postInstallAction": {
"exePath": "string",
"type": "NONE",
"url": "string"
},
"totalSize": 0
},
"policies": [
{
"association": {
"releases": [
{
"projectName": "string",
"version": "string"
}
]
},
"createdAt": "string",
"description": "string",
"id": "string",
"isActive": true,
"name": "string",
"rule": {},
"type": "NONE",
"updatedAt": "string",
"version": 0
}
],
"projectId": 0,
"projectName": "string",
"releaseNotes": "string",
"releasedAt": "2026-04-22T16:58:12.353Z",
"size": 0,
"status": "start",
"type": "NONE",
"updatedAt": "2026-04-22T16:58:12.353Z",
"version": "string"
}
}
Project not found
Internal server error