Author - Managers API

These endpoints will return information about managers and their direct reports.

Interfaces

List all managers

GET /api/author/managers

Managers are listed 20 per response with the next group available via the next URL in the meta object.

Response Codes

200 OK

Parameters

  • search String

    Finds managers with matching value in first name, last name, uid, or email.

Example Response

{
  "meta": {
    "next": "https://example.bridgeapp.com/api/author/managers?after=afdsajkf3er32fsjfkdsa"
  },
  "managers": [
    {
      "id": "1",
      "uid": "jdoe",
      "hris_id": "123213",
      "first_name": "John",
      "last_name": "Doe",
      "full_name": "John A Doe",
      "sortable_name": "Doe, John A",
      "email": "jdoe@example.com",
      "locale": "en",
      "roles": ["observer"],
      "name": "John Doe",
      "avatar_url": "https://www.example.com/pictures/jdoe.jpeg",
      "updated_at": "2016-12-02T08:48:01.944-07:00",
      "deleted_at": null,
      "unsubscribed": null,
      "welcomed_at": "2015-06-17T10:40:09.097-06:00",
      "logged_in_at": "2016-12-02T08:48:01.930-07:00",
      "hire_date": "2014-04-01T16:00:00.000-07:00",
      "direct_reports_count": 9
    }
  ]
}