CheckInTime
A CheckInTime combines an EventTime and a Location, and associates it with
the parent CheckIn.
Example Request
curl https://api.planningcenteronline.com/check-ins/v2/check_ins/{check_in_id}/check_in_times
View in API Explorer →
Example Object
{
"type": "CheckInTime",
"id": "1",
"attributes": {
"alerts": [],
"has_validated": true,
"kind": "string",
"services_integrated": true
},
"relationships": {
"event_time": {
"data": {
"type": "EventTime",
"id": "1"
}
},
"location": {
"data": {
"type": "Location",
"id": "1"
}
},
"check_in": {
"data": {
"type": "CheckIn",
"id": "1"
}
},
"pre_check": {
"data": {
"type": "PreCheck",
"id": "1"
}
}
}
}
Attributes
| Name |
Type |
Description |
alerts |
array |
|
has_validated |
boolean |
|
id |
primary_key |
|
kind |
string |
|
services_integrated |
boolean |
|
Relationships
| Name |
Type |
Association Type |
Note |
| event_time |
EventTime |
to_one |
|
| location |
Location |
to_one |
|
| check_in |
CheckIn |
to_one |
|
| pre_check |
PreCheck |
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 |
/check-ins/v2/check_ins/{check_in_id}/check_in_times |
Reading
| HTTP Method |
Endpoint |
| GET |
/check-ins/v2/check_ins/{check_in_id}/check_in_times/{id} |
Belongs To
| HTTP Method |
Endpoint |
Association |
Details |
Filter By |
| GET |
https://api.planningcenteronline.com/check-ins/v2/check_ins/{check_in_id}/check_in_times |
CheckIn
|
|
|