Theme switcher

Get Started

New Description: The "Get Started" section provides essential information for developers looking to integrate with the Dream ELD API. Users can access key resources and guidelines to kickstart their integration process seamlessly. Start building robust applications with the help of this comprehensive section.

E-mail: support@dreameld.com

Base URL

Production:

https://app.dreameld.com

Language Box

Company

The Company section of the API allows users to access and manage information related to companies or organizations. Users can retrieve company name and its id.

Header Parameters

Authorizationstring

The Authorization header parameter is used to authenticate the request to access the Company endpoint.

Path Parameters

idstring

The id path parameter is used to specify the specific vehicle for which the request is being made to the Company endpoint.

Response

200
Object

Response Attributes

_idstring

The _id parameter in the response provides a unique identifier for the Company endpoint.

namestring

The name parameter in the response holds the name associated with the Company endpoint.

400
Object

Response Attributes

messagestring

The message parameter in the response contains a message related to the outcome of the request made to the Company endpoint.

Was this section helpful?

What made this section unhelpful for you?

POST

/api/HosconnectApi/companies/{id}

Select
1 2 curl --location --globoff --request POST 'https://app.dreameld.com/api/HosconnectApi/companies/{id}' \ --header 'Authorization: auth_token' \

Response

{
  "_id": "string",
  "name": "string"
}
Was this section helpful?

What made this section unhelpful for you?

Vehicles

All company vehicles

Endpoints

POST
POST

Drivers

All company drivers

Endpoints

POST
POST

Last Driver Status

The Last Driver Status section provides users with the ability to retrieve the most recent status of a specific driver. By accessing this section, users can quickly and easily access essential information about the driver's current status, empowering them to make informed decisions based on real-time data.

Was this section helpful?

What made this section unhelpful for you?

Endpoints

POST
POST
Was this section helpful?

What made this section unhelpful for you?

Bulk

The Bulk section enables users to retrieve multiple driver statuses within a specified company at once. By accessing this information, users can efficiently monitor and manage the duty status, shift details, and activity levels of multiple drivers simultaneously, providing valuable insights for effective scheduling and operations management.

The Last Driver Status section allows users to retrieve the latest status of a driver within a specified company. By accessing this information, users can track the driver's current duty status, shift details, and more. This section provides valuable insights into the real-time activities of drivers, aiding in monitoring and managing their work schedules effectively.

Header Parameters

Authorizationstring

Header parameter containing the authorization token for accessing the API.

Response

200
Object

Response Attributes

dataarray

Response parameter containing data related to the driver status.

Show child attributes

400
Object

Response Attributes

messagestring

Response parameter providing a message related to the driver status.

Was this section helpful?

What made this section unhelpful for you?

POST

/api/HosconnectApi/latest_driver_statuses/

Select
1 2 curl --location --request POST 'https://app.dreameld.com/api/HosconnectApi/latest_driver_statuses/' \ --header 'Authorization: auth_token' \

Response

{
  "data": [
    {
      "companyId": "string",
      "userId": "string",
      "break": 0,
      "drive": 0,
      "shift": 0,
      "cycle": 0,
      "dutyStatus": "DS_OFF",
      "BreakText": "string",
      "DriveText": "string",
      "ShiftText": "string",
      "CycleText": "string",
      "DriverID": "0"
    }
  ]
}
Was this section helpful?

What made this section unhelpful for you?

Single

The Single section enables users to retrieve the latest status of a driver within a specified company. By accessing this information, users can monitor the driver's current duty status, shift details, and more, providing valuable insights into their real-time activities for effective work schedule management.

The Last Driver Status section allows users to retrieve the latest status of a driver within a specified company. By accessing this information, users can track the driver's current duty status, shift details, and more. This section provides valuable insights into the real-time activities of drivers, aiding in monitoring and managing their work schedules effectively.

Header Parameters

Authorizationstring

Header parameter containing the authorization token for accessing the API.

Path Parameters

idstring

Driver Id

Response

200
Object

Response Attributes

dataarray

Response parameter containing data related to the driver status.

Show child attributes

400
Object

Response Attributes

messagestring

Response parameter providing a message related to the driver status.

Was this section helpful?

What made this section unhelpful for you?

POST

/api/HosconnectApi/latest_driver_statuses/{id}

Select
1 2 curl --location --globoff --request POST 'https://app.dreameld.com/api/HosconnectApi/latest_driver_statuses/{id}' \ --header 'Authorization: auth_token' \

Response

{
  "data": [
    {
      "companyId": "string",
      "userId": "string",
      "break": 0,
      "drive": 0,
      "shift": 0,
      "cycle": 0,
      "dutyStatus": "DS_OFF",
      "BreakText": "string",
      "DriveText": "string",
      "ShiftText": "string",
      "CycleText": "string",
      "DriverID": "0"
    }
  ]
}
Was this section helpful?

What made this section unhelpful for you?

Last Vehicle Status

The Last Vehicle Status section allows users to retrieve the most recent status of a specific vehicle within the system. With this API section, users can quickly access up-to-date information about a vehicle's status without needing to manually search through multiple records. This functionality streamlines the process of monitoring and managing vehicle statuses, enhancing overall operational efficiency.

Endpoints

POST
POST