API
⌘K
My Developer Account

EventLabel

Says how many of a given label to print for this event and whether to print it for regulars, guests, and/or volunteers.

Example Request

curl https://api.planningcenteronline.com/check-ins/v2/events/{event_id}/event_labels

View in API Explorer →

Example Object

{
  "type": "EventLabel",
  "id": "1",
  "attributes": {
    "created_at": "2000-01-01T12:00:00Z",
    "for_guest": true,
    "for_regular": true,
    "for_volunteer": true,
    "quantity": 1,
    "updated_at": "2000-01-01T12:00:00Z"
  },
  "relationships": {}
}

Attributes

Name Type Description
created_at date_time
for_guest boolean
for_regular boolean
for_volunteer boolean
id primary_key
quantity integer
updated_at date_time

Can Include

Parameter Value Description Assignable
include event include associated event
include label include associated label

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 /check-ins/v2/events/{event_id}/event_labels

Reading

HTTP Method Endpoint
GET /check-ins/v2/events/{event_id}/event_labels/{id}

Associations

HTTP Method Endpoint Returns Details Filter By
GET https://api.planningcenteronline.com/check-ins/v2/events/{event_id}/event_labels/{event_label_id}/event Event
GET https://api.planningcenteronline.com/check-ins/v2/events/{event_id}/event_labels/{event_label_id}/label Label

Belongs To

HTTP Method Endpoint Association Details Filter By
GET https://api.planningcenteronline.com/check-ins/v2/events/{event_id}/event_labels Event
GET https://api.planningcenteronline.com/check-ins/v2/labels/{label_id}/event_labels Label