Skip to main content

Get requested shifts

GET 

/api/v2/public/shift-requests

Returns requested shift with clinician's details and a link to download clinician profile that is generated when the shift was requested. This ensures the clinician information is up to date.

Users can also create a Webhook in our system to receive notifications when a clinician requests to work a shift.

Request

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
    startDate date-time

    When you provide date-time value, time is ignored and will take the start of the day for the given date (00:00:00)

    Example: 2024-09-13T18:48:24.306Z
    licenseType string

    License Type of the shift

    Example: RN
    facilityId stringrequired

    Id of the facility

    Example: NUR-1660331570
    shiftId string

    Id of the shift

    Example: 5552536398

Responses

Schema
    data object[]
  • Array [
  • shiftId stringrequired

    Id of the shift

    licenseType stringrequired

    License Type of the shift

    facilityId stringrequired

    Id of the facility

    from date-timerequired

    Shift start date

    to date-timerequired

    Shift end date

    clinicians object[]required
  • Array [
  • id stringrequired

    Id of the clinician

    firstName stringrequired

    First name of the clinician

    lastName stringrequired

    Last name of the clinician

    url stringrequired

    URL to download clinician profile

    contactEmail stringrequired

    Email of the clinician

    contactPhone +1##########required

    Contact Phone of the clinician

  • ]
  • breakTime ISO 8601 duration

    Break Time for the shift

  • ]
  • meta object
    limit numberrequired

    Number of items returned

    offset numberrequired

    Starting position

    sortDirection objectrequired

    Sorting direction

    total numberrequired

    Total records found

Loading...