App
An app is one of the handful of apps that Planning Center offers that organizations can subscribe to, e.g. Services, Registrations, etc.
Example Object
{
"type": "App",
"id": "1",
"attributes": {
"name": "string",
"url": "string"
},
"relationships": {}
}
Attributes
| Name |
Type |
Description |
id |
primary_key |
|
name |
string |
|
url |
string |
|
Order By
| Parameter |
Value |
Type |
Description |
| order |
name |
string |
prefix with a hyphen (-name) to reverse the order |
| order |
url |
string |
prefix with a hyphen (-url) to reverse the order |
Query By
| Name |
Parameter |
Type |
Description |
Example |
| name |
where[name] |
string |
Query on a specific name |
?where[name]=string |
| url |
where[url] |
string |
Query on a specific url |
?where[url]=string |
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 |
/people/v2/apps |
Reading
| HTTP Method |
Endpoint |
| GET |
/people/v2/apps/{id} |
Belongs To
| HTTP Method |
Endpoint |
Association |
Details |
Filter By |
| GET |
https://api.planningcenteronline.com/people/v2/message_groups/{message_group_id}/app |
MessageGroup
|
|
|
| GET |
https://api.planningcenteronline.com/people/v2/apps |
Organization
|
|
|
| GET |
https://api.planningcenteronline.com/people/v2/people/{person_id}/person_apps/{person_app_id}/app |
PersonApp
|
|
|
| GET |
https://api.planningcenteronline.com/people/v2/people/{person_id}/apps |
Person
|
|
|