API
⌘K
My Developer Account

Attendance

Example Request

curl https://api.planningcenteronline.com/services/v2/series/{series_id}/plans/{plan_id}/attendances

View in API Explorer →

Example Object

{
  "type": "Attendance",
  "id": "1",
  "attributes": {
    "check_ins_event_id": "primary_key",
    "check_ins_event_period_id": "primary_key",
    "checked_in_at": "2000-01-01T12:00:00Z"
  },
  "relationships": {
    "plan_time": {
      "data": {
        "type": "PlanTime",
        "id": "1"
      }
    },
    "plan_person": {
      "data": {
        "type": "PlanPerson",
        "id": "1"
      }
    }
  }
}

Attributes

Name Type Description
check_ins_event_id primary_key
check_ins_event_period_id primary_key
checked_in_at date_time
id primary_key

Relationships

Name Type Association Type Note
plan_time PlanTime to_one
plan_person PlanPerson to_one

Pagination

Name Parameter Type Description
per_page per_page integer how many records to return per page (min=1, max=100, default=25)
offset offset integer get results from given offset

Endpoints

Listing

HTTP Method Endpoint
GET /services/v2/series/{series_id}/plans/{plan_id}/attendances

Reading

HTTP Method Endpoint
GET /services/v2/series/{series_id}/plans/{plan_id}/attendances/{id}

Belongs To

HTTP Method Endpoint Association Details Filter By
GET https://api.planningcenteronline.com/services/v2/service_types/{service_type_id}/plans/{plan_id}/attendances Plan