API
⌘K
My Developer Account

WorkflowAssigneeSummary

Aggregated card counts for an assignee across all visible workflows

Example Request

curl https://api.planningcenteronline.com/people/v2/workflow_assignee_summaries

View in API Explorer →

Example Object

{
  "type": "WorkflowAssigneeSummary",
  "id": "1",
  "attributes": {
    "overdue_count": 1,
    "ready_count": 1,
    "snoozed_count": 1
  },
  "relationships": {
    "person": {
      "data": {
        "type": "Person",
        "id": "1"
      }
    }
  }
}

Attributes

Name Type Description
id primary_key
overdue_count integer
ready_count integer
snoozed_count integer

Relationships

Name Type Association Type Note
person Person to_one

Order By

Parameter Value Type Description
order first_name string

prefix with a hyphen (-first_name) to reverse the order

order last_name string

prefix with a hyphen (-last_name) to reverse the order

order name string

prefix with a hyphen (-name) to reverse the order

order overdue_count string

prefix with a hyphen (-overdue_count) to reverse the order

order ready_count string

prefix with a hyphen (-ready_count) to reverse the order

order snoozed_count string

prefix with a hyphen (-snoozed_count) to reverse the order

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/workflow_assignee_summaries

Reading

HTTP Method Endpoint
GET /people/v2/workflow_assignee_summaries/{id}

Belongs To

HTTP Method Endpoint Association Details Filter By
GET https://api.planningcenteronline.com/people/v2/workflow_assignee_summaries Organization