List pending entries
GET/api/v1/resources/pending
Returns pending Platform / Device Type / Group references and pending Versions reported by devices that do not yet exist in the system. Filter by type to narrow to one kind.
Request
Query Parameters
Number of results to return (default: 100)
Offset for pagination (default: 0)
Possible values: [PENDING, ACCEPTED, REJECTED]
Possible values: [PLATFORM, DEVICE_TYPE, GROUP, VERSION]
Responses
- 200
List of pending resources retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
resources
object[]
required
Possible values: [PLATFORM, DEVICE_TYPE, GROUP, VERSION]
Identifier of the pending entry. For PLATFORM/DEVICE_TYPE/GROUP it is the raw name/id token reported by the device; for VERSION it is "projectName@version".
Possible values: [PENDING, ACCEPTED, REJECTED]
VERSION only: the project name of the pending version
VERSION only: the pending version string
VERSION only: the reported catalog id
{
"resources": [
{
"id": 0,
"type": "PLATFORM",
"token": "string",
"status": "PENDING",
"reportedCount": 0,
"firstReportedDate": "2026-09-10T14:32:46.407Z",
"lastReportedDate": "2026-09-10T14:32:46.407Z",
"reportingDeviceIds": [
"string"
],
"rawValues": {},
"reason": "string",
"projectName": "string",
"version": "string",
"catalogId": "string"
}
],
"total": 0
}