Skip to main content

Get Facility Work History

GET 

/api/v2/public/facilities/:facilityId/work-history

Return data of clinicians that have completed a shift for the given Facility.

The data will be sorted based on the Shift Start Date.

Request

Path Parameters

    facilityId stringrequired

    Id of the facility

    Example: NUR-12345

Query Parameters

    limit number

    Possible values: <= 100

    Default value: 10

    Pagination parameter, use to specify the quantity of records returned

    Example: 10
    offset number

    Default value: 0

    Pagination parameter, use to specify the number of records to skip before starting to return results

    Example: 10
    sortDirection string

    Possible values: [ASC, DESC]

    Default value: DESC

    Pagination parameter, use to specify the order of records by creation date, either 'asc' for ascending or 'desc' for descending

    Example: DESC

Responses

Schema
    data object[]
  • Array [
  • clinicianId stringrequired

    Id of the Clinician

    firstName stringrequired

    First Name of the Clinician

    lastName stringrequired

    Last Name of the Clinician

    isFavorited booleanrequired

    Indicates if the Clinician is favorited

    lastShiftDate date-time

    The date of the last shift worked by the Clinician

  • ]
Loading...