cursor from the previous response to fetch the next page. When no more results are available, no cursor is returned.
offset parameter has been removed. Use cursor for pagination instead.| Language | Single Page | Auto-Paginate |
|---|---|---|
| TypeScript | posthook.hooks.list({ status, limit }) | posthook.hooks.listAll({ status }) |
| Python | client.hooks.list(status, limit) | client.hooks.list_all(status) |
| Go | client.Hooks.List(ctx, &HookListParams{}) | client.Hooks.ListAll(ctx, &HookListAllParams{}) |
listAll / list_all / ListAll methods return an iterator that handles cursor pagination automatically.
Cursor for pagination. Use the value from the previous response to get the next page.
Field to sort results by
postAt, createdAt Sort direction
asc, desc pending, completed, failed, retry Filter hooks scheduled before this timestamp
Filter hooks scheduled after this timestamp
Filter hooks created before this timestamp
Filter hooks created after this timestamp