pco_list_checkins
Retrieve and filter check-in records from Planning Center Check-Ins by date range with pagination support for attendance tracking.
Instructions
List check-in records in Planning Center Check-Ins.
Args:
where_created_after (string, optional): Filter check-ins created after this date (YYYY-MM-DD)
where_created_before (string, optional): Filter check-ins created before this date (YYYY-MM-DD)
limit (number): Max results (1-100, default 25)
offset (number): Pagination offset (default 0)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: List of check-in records with name, security code, kind, and timestamps. Error: Returns "Error: ..." if the request fails.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| where_created_after | No | Filter check-ins created after this date (YYYY-MM-DD) | |
| where_created_before | No | Filter check-ins created before this date (YYYY-MM-DD) | |
| limit | No | Maximum number of results to return (1-100, default: 25) | |
| offset | No | Number of results to skip for pagination (default: 0) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |