pco_create_person
Add new individuals to your Planning Center People database by providing their name and optional details like birthdate, gender, and medical notes.
Instructions
Create a new person record in Planning Center People.
Args:
first_name (string, required): First name
last_name (string, required): Last name
middle_name (string, optional): Middle name
birthdate (string, optional): Birthdate in YYYY-MM-DD format
gender (string, optional): Gender ('M' or 'F')
status (string, optional): Status ('active' or 'inactive', default: 'active')
child (boolean, optional): Whether this is a child record
medical_notes (string, optional): Medical notes
Returns: The newly created person record with its assigned ID. Error: Returns "Error: ..." if validation fails.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| first_name | Yes | First name (required) | |
| last_name | Yes | Last name (required) | |
| middle_name | No | Middle name | |
| birthdate | No | Birthdate in YYYY-MM-DD format | |
| gender | No | Gender: M or F | |
| status | No | Status (default: 'active') | active |
| child | No | Whether this is a child record | |
| medical_notes | No | Medical notes |