BulkTrackForReleasesResponse
Aggregate result of POST /series/bulk/track-for-releases and its untrack
counterpart. Counts and per-series outcomes for client-side display.
alreadyInStateintegerrequired
Series whose tracked flag was already in the target state. No-ops.
Possible values: >= 0
changedintegerrequired
Series successfully flipped to tracked = true (or false for the
untrack endpoint).
Possible values: >= 0
erroredintegerrequired
Series that could not be processed (missing, error, etc.).
Possible values: >= 0
results object[]required
Per-series outcomes in input order.
Array [
detailstring | nullnullable
Free-form detail (error message for errored, reason for skipped).
None for the success cases.
outcomestringrequired
tracked | untracked | skipped | errored.
seriesIdstring<uuid>required
]
BulkTrackForReleasesResponse
{
"alreadyInState": 0,
"changed": 0,
"errored": 0,
"results": [
{
"detail": "string",
"outcome": "string",
"seriesId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
}