Get profile roles daily data over time

Returns daily counts of profiles in each lifecycle state for the specified date range, optionally filtered to specific classes. Each row represents a single day and includes a count for every lifecycle state defined in your institution.

Query Parameters
  • start_date
    Type: string
  • end_date
    Type: string
  • classes
    Type: string
  • states
    Type: string
  • withdrawn
    Type: string
Responses
  • application/json
  • application/json
  • application/json
Request Example for get/apis/data/profiles/roles/daily
curl 'https://school.fullfabric.cloud/apis/data/profiles/roles/daily?start_date=&end_date=&classes=&states=&withdrawn=' \
  --header 'FF-Auth: YOUR_SECRET_TOKEN'
[
  {
    "date": "2025-01-06",
    "prospect::cold": 142,
    "prospect::engaged": 98,
    "prospect::qualified": 74,
    "applicant::submitted": 61,
    "applicant::admitted": 48,
    "applicant::accepted": 42,
    "student::enrolled": 38,
    "alumnus::active": 21
  },
  {
    "date": "2025-01-07",
    "prospect::cold": 143,
    "prospect::engaged": 98,
    "prospect::qualified": 74,
    "applicant::submitted": 62,
    "applicant::admitted": 48,
    "applicant::accepted": 42,
    "student::enrolled": 38,
    "alumnus::active": 21
  },
  {
    "date": "2025-01-08",
    "prospect::cold": 142,
    "prospect::engaged": 99,
    "prospect::qualified": 74,
    "applicant::submitted": 61,
    "applicant::admitted": 49,
    "applicant::accepted": 42,
    "student::enrolled": 38,
    "alumnus::active": 21
  }
]