pco_update_person
Update specific fields in a Planning Center Online person record using a PATCH request. Modify details like name, birthdate, gender, status, or medical notes while keeping other information unchanged.
Instructions
Update an existing person record in Planning Center People.
Only the fields you provide will be updated (sparse update / PATCH semantics).
Args:
id (string): PCO person ID to update
first_name (string, optional): Updated first name
last_name (string, optional): Updated last name
middle_name (string, optional): Updated middle name
birthdate (string, optional): Updated birthdate in YYYY-MM-DD format
gender (string, optional): Updated gender ('M' or 'F')
status (string, optional): Updated status ('active' or 'inactive')
medical_notes (string, optional): Updated medical notes
Returns: Confirmation and the updated person record. Error: Returns "Error: Resource not found" if the ID is invalid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | PCO person ID to update | |
| first_name | No | Updated first name | |
| last_name | No | Updated last name | |
| middle_name | No | Updated middle name | |
| birthdate | No | Updated birthdate in YYYY-MM-DD format | |
| gender | No | Updated gender: M or F | |
| status | No | Updated status | |
| medical_notes | No | Updated medical notes |