Organization
The organization represents a single church. Every other resource is scoped to this record.
Example Request
curl https://api.planningcenteronline.com/groups/v2
Example Object
{
"type": "Organization",
"id": "1",
"attributes": {
"name": "string",
"time_zone": "string"
},
"relationships": {}
}
Attributes
| Name | Type | Description |
|---|---|---|
id |
primary_key |
|
name |
string |
The name of the organization. |
time_zone |
string |
The time zone of the organization. |
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 | /groups/v2 |
Reading
| HTTP Method | Endpoint |
|---|---|
| GET | /groups/v2/{id} |
Associations
| HTTP Method | Endpoint | Returns | Details | Filter By |
|---|---|---|---|---|
| GET | https://api.planningcenteronline.com/groups/v2/campuses |
Campus | campuses for this organization |
|
| GET | https://api.planningcenteronline.com/groups/v2/events |
Event | events for all groups in this organization |
|
| GET | https://api.planningcenteronline.com/groups/v2/group_applications |
GroupApplication | requests to join groups for this organization |
|
| GET | https://api.planningcenteronline.com/groups/v2/group_types |
GroupType | group types for this organization |
|
| GET | https://api.planningcenteronline.com/groups/v2/groups |
Group | groups for this organization |
|
| GET | https://api.planningcenteronline.com/groups/v2/people |
Person | people for this organization |
|
| GET | https://api.planningcenteronline.com/groups/v2/tag_groups |
TagGroup | tag groups in this organization |
|