API
⌘K
My Developer Account

PersonApp

A Person App is the relationship between a Person and an App.

Example Request

curl https://api.planningcenteronline.com/people/v2/people/{person_id}/person_apps

View in API Explorer →

Example Object

{
  "type": "PersonApp",
  "id": "1",
  "attributes": {
    "allow_pco_login": true,
    "people_permissions": "value"
  },
  "relationships": {
    "app": {
      "data": {
        "type": "App",
        "id": "1"
      }
    },
    "person": {
      "data": {
        "type": "Person",
        "id": "1"
      }
    }
  }
}

Attributes

Name Type Description
allow_pco_login boolean
id primary_key
people_permissions string Possible values: `no_access`, `viewer`, or `editor`

Relationships

Name Type Association Type Note
app App to_one
person Person to_one

Can Include

Parameter Value Description Assignable
include app include associated app create and update

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/people/{person_id}/person_apps

Reading

HTTP Method Endpoint
GET /people/v2/people/{person_id}/person_apps/{id}

Creating

HTTP Method Endpoint Assignable Attributes
POST /people/v2/people/{person_id}/person_apps
  • app_id

Associations

HTTP Method Endpoint Returns Details Filter By
GET https://api.planningcenteronline.com/people/v2/people/{person_id}/person_apps/{person_app_id}/app App

Belongs To

HTTP Method Endpoint Association Details Filter By
GET https://api.planningcenteronline.com/people/v2/people/{person_id}/person_apps Person