Skip to main content

ChurchCRM Private API

The Private API covers all authenticated operations — people, families, groups, finance, calendar management, and system administration.

Authentication

All private endpoints require an API key in the request header:

x-api-key: your-api-key-here

Getting your API key

Option 1 — From the app: Go to your user profile → API Key tab.

Option 2 — Via API:

curl -X POST https://your-server.com/api/public/user/login \
-H "Content-Type: application/json" \
-d '{"userName": "admin", "password": "secret"}'

Response:

{ "apiKey": "your-api-key-here" }

Role-based access

Beyond basic authentication, many endpoints require specific roles:

RoleDescription
FinanceAccess to deposits and payments
AddEventsCreate and edit calendar events
ManageGroupsGroup administration
EditRecordsEdit person and family records
DeleteRecordsDelete person and family records
AdminSystem administration

Requests to role-protected endpoints without the required role return HTTP 403 Forbidden.

Base URL

https://your-server.com/api

Replace your-server.com with your ChurchCRM hostname.