SignupTime
Signup_times are associated with a signup, which can have multiple signup times.
Example Request
curl https://api.planningcenteronline.com/registrations/v2/signups/{signup_id}/next_signup_time
Example Object
{
"type": "SignupTime",
"id": "1",
"attributes": {
"all_day": true,
"created_at": "2000-01-01T12:00:00Z",
"ends_at": "2000-01-01T12:00:00Z",
"starts_at": "2000-01-01T12:00:00Z",
"updated_at": "2000-01-01T12:00:00Z"
},
"relationships": {}
}
Attributes
| Name | Type | Description |
|---|---|---|
all_day |
boolean |
Whether or not the signup time is all day. |
created_at |
date_time |
|
ends_at |
date_time |
End date and time of signup time. |
id |
primary_key |
|
starts_at |
date_time |
Start date and time of signup time. |
updated_at |
date_time |
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 | /registrations/v2/signups/{signup_id}/next_signup_time |
Notes:
Organization admins can see all signup times for all signups. Signup managers can only see the signup times for signups they manage.
Reading
| HTTP Method | Endpoint |
|---|---|
| GET | /registrations/v2/signups/{signup_id}/next_signup_time/{id} |
Notes:
Organization admins can see all signup times for all signups. Signup managers can only see the signup times for signups they manage.
Belongs To
| HTTP Method | Endpoint | Association | Details | Filter By |
|---|---|---|---|---|
| GET | https://api.planningcenteronline.com/registrations/v2/signups/{signup_id}/next_signup_time |
Signup | ||
| GET | https://api.planningcenteronline.com/registrations/v2/signups/{signup_id}/signup_times |
Signup |
|