Get offerings for a device type
GET/api/v2/catalog/offering/device-type/:deviceTypeIdentifier
Retrieves all available component offerings for a specific device type by device type identifier. Optionally filter by platform identifier to narrow down the results.
Request
Path Parameters
deviceTypeIdentifier stringrequired
Device type identifier (ID or name)
Query Parameters
platformIdentifier string
Platform identifier (ID or name)
Responses
- 200
- 404
- 500
Successfully retrieved device type offering
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
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
{
"deviceTypeId": 0,
"deviceTypeName": "string",
"projects": [
{
"displayName": "string",
"label": "string",
"projectId": 0,
"projectName": "string",
"release": {
"createdAt": "2026-03-12T11:20:53.416Z",
"id": "string",
"latest": true,
"projectName": "string",
"releaseNotes": "string",
"releasedAt": "2026-03-12T11:20:53.416Z",
"size": 0,
"status": "draft",
"type": "product",
"updatedAt": "2026-03-12T11:20:53.416Z",
"version": "string"
}
}
]
}
Device type not found
Internal server error
Loading...