Get offerings for a platform
GET/api/v2/catalog/offering/platform/:platformIdentifier
Retrieves all available component offerings for a specific platform by platform identifier. Returns the offering tree including all device types, projects, and components for the platform.
Request
Path Parameters
platformIdentifier stringrequired
Platform identifier (ID or name)
Responses
- 200
- 404
- 500
Successfully retrieved platform offering
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
deviceTypes
object[]
deviceTypeId doublerequired
ID of the device type
deviceTypeName stringrequired
Name of the device type
projects
object[]
displayName stringnullable
Display name of the project
label stringnullable
Label of the project
projectId doublerequired
Identifier of the project
projectName stringrequired
Name of the project
release
object
createdAt date-timerequired
id stringrequired
latest booleannullable
metadata nullable
projectName stringrequired
releaseNotes stringnullable
releasedAt date-time
size int64nullable
status Statusrequired
Possible values: [draft, in_review, approved, released, archived]
type Typerequired
Possible values: [product, formation]
updatedAt date-timerequired
version stringrequired
platformId doublerequired
ID of the platform
platformName stringrequired
Name of the platform
{
"deviceTypes": [
{
"deviceTypeId": 0,
"deviceTypeName": "string",
"projects": [
{
"displayName": "string",
"label": "string",
"projectId": 0,
"projectName": "string",
"release": {
"createdAt": "2026-03-12T11:20:53.419Z",
"id": "string",
"latest": true,
"projectName": "string",
"releaseNotes": "string",
"releasedAt": "2026-03-12T11:20:53.419Z",
"size": 0,
"status": "draft",
"type": "product",
"updatedAt": "2026-03-12T11:20:53.419Z",
"version": "string"
}
}
]
}
],
"platformId": 0,
"platformName": "string"
}
Platform not found
Internal server error
Loading...