Get Offering of Platform
GET/api/v1/catalog/offering/platform/:platformIdentifier
This service message allows retrieval of the offering of a specific platform by platform ID.
Request
Path Parameters
platformIdentifier stringrequired
Platform identifier (ID or name)
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
platformId numberrequired
ID of the platform
platformName stringrequired
Name of the platform
deviceTypes
object[]
deviceTypeId numberrequired
ID of the device type
deviceTypeName stringrequired
Name of the device type
projects
object[]
projectName stringrequired
Name of the project
projectId numberrequired
Identifier of the project
displayName string
Display name of the project
label string
Label of the project
release
object
id stringrequired
version stringrequired
projectName stringrequired
releaseNotes string
metadata object
status stringrequired
Possible values: [draft, in_review, approved, released, archived]
type stringrequired
Possible values: [product, formation]
size int64
createdAt date-timerequired
updatedAt date-timerequired
latest boolean
releasedAt date-time
{
"platformId": 0,
"platformName": "string",
"deviceTypes": [
{
"deviceTypeId": 0,
"deviceTypeName": "string",
"projects": [
{
"projectName": "string",
"projectId": 0,
"displayName": "string",
"label": "string",
"release": {
"id": "string",
"version": "string",
"projectName": "string",
"releaseNotes": "string",
"metadata": {},
"status": "draft",
"type": "product",
"size": 0,
"createdAt": "2026-01-01T11:09:06.540Z",
"updatedAt": "2026-01-01T11:09:06.541Z",
"latest": true,
"releasedAt": "2026-01-01T11:09:06.541Z"
}
}
]
}
]
}
Loading...