Behavior Notes

A Behavior Note is a positive or negative report about an occurance about a student submitted by a teacher.

Get all behavior notes

get

This endpoint retrieves all the available behavior notes for the School.

Authorizations
Query parameters
modified_sincestringOptional

A timestamp to filter the modification date of results.

pagestringOptional

An integer defining which page to display.

per_pagestringOptional

An integer defining the number of records to display per page.

Responses
200

Success

application/json
get
GET /v2/behavior/notes HTTP/1.1
Host: api.managebac.com
auth-token: YOUR_API_KEY
Accept: */*
200

Success

{
  "behavior_notes": [
    {
      "id": 1,
      "student_id": "chloe-42",
      "first_name": "Chloe",
      "preferred_name": "M",
      "last_name": "Epelbaum",
      "email": "[email protected]",
      "grade": "Grade 12",
      "incident_time": "2017-07-07T00:00:00.000Z",
      "behavior_type": "Behaviour",
      "notes": "<p>Chloe's behaviour is unacceptable</p>",
      "next_step": "Phone call home",
      "next_step_date": "2017-09-09",
      "author_id": 1,
      "reported_by": "Richard Chandler",
      "homeroom_advisor": "Risa Aoki",
      "visible_to_parents": true,
      "visible_to_students": false,
      "created_at": "2022-12-11T01:42:16.000-08:00",
      "updated_at": "2023-04-08T06:34:38.000-07:00"
    }
  ],
  "meta": {
    "current_page": 1,
    "total_pages": 1,
    "total_count": 0,
    "per_page": 100
  }
}

Was this helpful?