signaloid-cli builds tasks
List the tasks run from a specific build.
Synopsis
signaloid-cli builds tasks --build-id <id> [--from <iso>] [--to <iso>] [--start-key <key>]
Options
| Option | Required | Description |
|---|---|---|
--build-id <id> | Yes | Build ID |
--from <iso> | No | Filter to tasks created after this ISO 8601 timestamp |
--to <iso> | No | Filter to tasks created before this ISO 8601 timestamp |
--start-key <key> | No | Pagination cursor token (from a previous response's ContinuationKey) |
Examples
List all tasks for a build:
signaloid-cli builds tasks --build-id bld_xyz789
Filter by date range:
signaloid-cli builds tasks \
--build-id bld_xyz789 \
--from 2025-01-01T00:00:00Z \
--to 2025-01-31T23:59:59Z
Paginate through results:
--start-key takes the ContinuationKey value returned by the previous response. Copy it exactly as returned. Omit --start-key to fetch the first page.
signaloid-cli builds tasks --build-id bld_xyz789 --start-key <continuation-key>
See Also
- signaloid-cli builds - Builds overview
- signaloid-cli tasks list - List all tasks
- signaloid-cli tasks get - Get task details