Breeze ChMS

Breeze ChMS is church management software (breezechms.com) for small and mid-sized churches, covering people/membership, tags and groups, events and calendars, check-ins and attendance, online and text giving, funds, pledge campaigns, custom forms, and volunteer scheduling. Breeze publishes a documented REST API scoped to each church subdomain (https://{subdomain}.breezechms.com/api), authenticated with an account API key sent in the Api-Key HTTP header. All API operations are HTTP GET requests with query-string parameters, and the API is rate limited to roughly 20 requests per minute.

10 APIs 0 Features
Church ManagementChMSNonprofitGivingMembershipEventsFaith

APIs

Breeze People API

List, retrieve, add, update, and delete people (members and contacts), read and write custom profile fields, and manage families. Supports paging, detailed field expansion, and ...

Breeze Tags API

List tags and tag folders, create and delete tags and folders, and assign or unassign tags to people to build groups and segments.

Breeze Events API

List events within a date range, retrieve a single event instance (with schedule expansion), list calendars and locations, and add or delete events on the church calendar.

Breeze Check-Ins and Attendance API

Record check-in / check-out attendance for people against an event instance, delete attendance, list who attended, and list who is eligible to check in to a given event.

Breeze Giving and Contributions API

List, add, edit, and delete contributions (giving records), including splitting a single contribution across multiple funds, associating a payment, and matching gifts to a perso...

Breeze Funds API

List the contribution funds configured for the church, used to designate and report on giving (for example General Fund, Missions, Building).

Breeze Pledges API

List pledge campaigns and the individual pledges within a campaign, which record who committed to give what over a date range against specified funds.

Breeze Forms API

List forms, list a form's fields, list submitted form entries (with detail expansion), and remove a form entry.

Breeze Volunteers API

List, add, remove, and update volunteers on an event instance, and manage the volunteer roles (list, add, remove) available for scheduling.

Breeze Account API

Retrieve an account summary and read the account activity log, filtered by action, user, and date range, for auditing and administration.

Collections

Pricing Plans

Rate Limits

Breeze Chms Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps
📰
Blog
Blog

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Breeze ChMS API
  version: '1.0'
request:
  auth:
    type: apikey
    apikey:
      key: Api-Key
      value: '{{apiKey}}'
      in: header
items:
- info:
    name: People
    type: folder
  items:
  - info:
      name: List people.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/people
      params:
      - name: limit
        value: '50'
        type: query
        description: Number of people to return.
      - name: offset
        value: '0'
        type: query
        description: Offset for paging.
      - name: details
        value: '1'
        type: query
        description: Set to 1 to include full profile details.
      - name: filter_json
        value: ''
        type: query
        description: JSON-encoded field filter.
    docs: Retrieves a paged list of people.
  - info:
      name: Retrieve a person.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/people/:person_id
      params:
      - name: person_id
        value: ''
        type: path
        description: The person ID.
    docs: Retrieves a single person by ID.
  - info:
      name: Add a person.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/people/add
      params:
      - name: first
        value: ''
        type: query
      - name: last
        value: ''
        type: query
      - name: fields_json
        value: ''
        type: query
        description: JSON-encoded profile field values.
    docs: Adds a new person.
  - info:
      name: Update a person.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/people/update
      params:
      - name: person_id
        value: ''
        type: query
      - name: fields_json
        value: ''
        type: query
    docs: Updates an existing person.
  - info:
      name: Delete a person.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/people/delete
      params:
      - name: person_id
        value: ''
        type: query
    docs: Deletes a person.
  - info:
      name: List profile fields.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/profile
    docs: Lists profile fields configured for the church.
- info:
    name: Tags
    type: folder
  items:
  - info:
      name: List tags.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/tags/list_tags
      params:
      - name: folder_id
        value: ''
        type: query
    docs: Lists tags, optionally within a folder.
  - info:
      name: List tag folders.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/tags/list_folders
    docs: Lists tag folders.
  - info:
      name: Assign a tag.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/tags/assign
      params:
      - name: person_id
        value: ''
        type: query
      - name: tag_id
        value: ''
        type: query
    docs: Assigns a tag to a person.
  - info:
      name: Unassign a tag.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/tags/unassign
      params:
      - name: person_id
        value: ''
        type: query
      - name: tag_id
        value: ''
        type: query
    docs: Unassigns a tag from a person.
- info:
    name: Events
    type: folder
  items:
  - info:
      name: List events.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/events
      params:
      - name: start
        value: ''
        type: query
      - name: end
        value: ''
        type: query
      - name: details
        value: '1'
        type: query
    docs: Lists events within a date range.
  - info:
      name: Retrieve an event instance.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/events/list_event
      params:
      - name: instance_id
        value: ''
        type: query
    docs: Retrieves a single event instance.
  - info:
      name: List calendars.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/events/calendars/list
    docs: Lists calendars.
  - info:
      name: Add an event.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/events/add
      params:
      - name: name
        value: ''
        type: query
      - name: starts_on
        value: ''
        type: query
      - name: ends_on
        value: ''
        type: query
    docs: Adds an event.
- info:
    name: Check-Ins and Attendance
    type: folder
  items:
  - info:
      name: Add attendance.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/events/attendance/add
      params:
      - name: person_id
        value: ''
        type: query
      - name: instance_id
        value: ''
        type: query
      - name: direction
        value: in
        type: query
    docs: Checks a person in or out of an event.
  - info:
      name: List attendance.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/events/attendance/list
      params:
      - name: instance_id
        value: ''
        type: query
      - name: details
        value: 'true'
        type: query
    docs: Lists attendance for an event instance.
  - info:
      name: List eligible people.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/events/attendance/eligible
      params:
      - name: instance_id
        value: ''
        type: query
    docs: Lists people eligible to check in.
- info:
    name: Giving and Contributions
    type: folder
  items:
  - info:
      name: List contributions.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/giving/list
      params:
      - name: start
        value: ''
        type: query
      - name: end
        value: ''
        type: query
    docs: Lists contributions.
  - info:
      name: Add a contribution.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/giving/add
      params:
      - name: date
        value: ''
        type: query
      - name: person_id
        value: ''
        type: query
      - name: amount
        value: ''
        type: query
      - name: funds_json
        value: ''
        type: query
        description: JSON-encoded fund split.
    docs: Adds a contribution, optionally split across funds.
  - info:
      name: Edit a contribution.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/giving/edit
      params:
      - name: payment_id
        value: ''
        type: query
    docs: Edits a contribution.
  - info:
      name: Delete a contribution.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/giving/delete
      params:
      - name: payment_id
        value: ''
        type: query
    docs: Deletes a contribution.
- info:
    name: Funds
    type: folder
  items:
  - info:
      name: List funds.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/funds/list
      params:
      - name: include_totals
        value: '1'
        type: query
    docs: Lists contribution funds.
- info:
    name: Pledges
    type: folder
  items:
  - info:
      name: List pledge campaigns.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/pledges/list_campaigns
    docs: Lists pledge campaigns.
  - info:
      name: List pledges in a campaign.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/pledges/list_pledges
      params:
      - name: campaign_id
        value: ''
        type: query
    docs: Lists pledges within a campaign.
- info:
    name: Forms
    type: folder
  items:
  - info:
      name: List forms.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/forms/list_forms
      params:
      - name: is_archived
        value: '0'
        type: query
    docs: Lists forms.
  - info:
      name: List form fields.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/forms/list_form_fields
      params:
      - name: form_id
        value: ''
        type: query
    docs: Lists the fields for a form.
  - info:
      name: List form entries.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/forms/list_form_entries
      params:
      - name: form_id
        value: ''
        type: query
      - name: details
        value: '1'
        type: query
    docs: Lists submitted form entries.
- info:
    name: Volunteers
    type: folder
  items:
  - info:
      name: List volunteers.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/volunteers/list
      params:
      - name: instance_id
        value: ''
        type: query
    docs: Lists volunteers on an event instance.
  - info:
      name: List volunteer roles.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/volunteers/list_roles
      params:
      - name: instance_id
        value: ''
        type: query
      - name: show_quantity
        value: '1'
        type: query
    docs: Lists volunteer roles for an event.
- info:
    name: Account
    type: folder
  items:
  - info:
      name: Account summary.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/account/summary
    docs: Retrieves an account summary.
  - info:
      name: List account log.
      type: http
    http:
      method: GET
      url: https://{{subdomain}}.breezechms.com/api/account/list_log
      params:
      - name: limit
        value: '100'
        type: query
    docs: Lists account activity log entries.