File:
cdc.nu
1 exported command
0 internal commandsqb cdc
Fetch entities that have changed since a given timestamp.
Pass a comma-separated list of entity names and an ISO 8601 timestamp. Returns the CDC response with changed records grouped by entity type.
Usage
qb cdc <entities> <changed_since>
Parameters
entities <string>- Comma-separated entity names (e.g. "Customer,Invoice")
changed_since <string>- ISO 8601 timestamp (e.g. "2024-01-01T00:00:00-00:00")
Input/output types
| input | output |
|---|---|
| any | any |
Examples
get changed invoices since Jan 2024
qb cdc "Invoice" "2024-01-01T00:00:00-00:00"get changed customers and invoices
qb cdc "Customer,Invoice" "2024-01-01T00:00:00-00:00"