> For the complete documentation index, see [llms.txt](https://apidocs.akinon.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.akinon.com/commerce-openapis/dynamic-bin-scheduler/admin-usage-tracking/list-change-capture-pointers.md).

# List change capture pointers

CDC pointers track the last Omnitron order `modified_date` processed by each sync job. Three keys exist by default:

| Key                         | Celery task cadence |
| --------------------------- | ------------------- |
| `last_modified_date_minute` | Every minute        |
| `last_modified_date_hourly` | Every hour          |
| `last_modified_date_daily`  | Every day           |

```json
{"openapi":"3.0.3","info":{"title":"Bankaci API","version":"1.0.0"},"tags":[{"name":"Admin - Usage Tracking","description":"Promotion usage records and CDC pointers (staff only)"}],"servers":[{"url":"{BASE_URL}/api/v1","description":"Bankaci API","variables":{"BASE_URL":{"default":"https://your-bankaci-instance.example.com","description":"Base URL of the Bankaci service"}}}],"security":[{"OmnitronTokenAuth":[]}],"components":{"securitySchemes":{"OmnitronTokenAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Omnitron staff token. Format: `Token <token>`.\nValidated against Omnitron `active_user` API — user must have `is_staff: true`.\n"}},"parameters":{"PageParam":{"in":"query","name":"page","schema":{"type":"integer","default":1,"minimum":1},"description":"Page number (1-based)"},"LimitParam":{"in":"query","name":"limit","schema":{"type":"integer","default":10,"minimum":1,"maximum":200},"description":"Number of results per page"},"SortParam":{"in":"query","name":"sort","schema":{"type":"string"},"description":"Field to sort by. Prefix with `-` for descending (e.g. `-created_date`)"}},"schemas":{"PaginatedChangeCapturePointerResponse":{"type":"object","properties":{"count":{"type":"integer"},"next":{"type":"string","nullable":true,"format":"uri"},"previous":{"type":"string","nullable":true,"format":"uri"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ChangeCapturePointerOut"}}}},"ChangeCapturePointerOut":{"type":"object","properties":{"id":{"type":"integer","readOnly":true},"key":{"type":"string","maxLength":255,"description":"Unique CDC pointer key (e.g. `last_modified_date_minute`)"},"value":{"type":"string","nullable":true,"description":"Serialized pointer value (ISO 8601 string for datetime type)"},"value_type":{"type":"string","enum":["int","str","datetime"],"description":"Type hint used to deserialize `value`"},"created_date":{"type":"string","format":"date-time","readOnly":true},"modified_date":{"type":"string","format":"date-time","readOnly":true}}}}},"paths":{"/admin/change-capture-pointers/":{"get":{"tags":["Admin - Usage Tracking"],"summary":"List change capture pointers","description":"CDC pointers track the last Omnitron order `modified_date` processed by each sync job.\nThree keys exist by default:\n\n| Key | Celery task cadence |\n|-----|---------------------|\n| `last_modified_date_minute` | Every minute |\n| `last_modified_date_hourly` | Every hour |\n| `last_modified_date_daily` | Every day |\n","parameters":[{"$ref":"#/components/parameters/PageParam"},{"$ref":"#/components/parameters/LimitParam"},{"$ref":"#/components/parameters/SortParam"},{"in":"query","name":"key","schema":{"type":"string"}},{"in":"query","name":"key__icontains","schema":{"type":"string"}},{"in":"query","name":"value","schema":{"type":"string"}},{"in":"query","name":"value__icontains","schema":{"type":"string"}}],"responses":{"200":{"description":"Paginated CDC pointers","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedChangeCapturePointerResponse"}}}},"401":{"description":"Unauthorized"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://apidocs.akinon.com/commerce-openapis/dynamic-bin-scheduler/admin-usage-tracking/list-change-capture-pointers.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
