Retrieve a list of all the drivers in an organization.
Successful operation
Bad request error
Unauthorized error
Forbidden error
Not found error
Internal server error
curl -i -X GET \ 'https://api-prod.surfsight.net/v2/drivers?organizationId=17&driverFirstName=string&driverLastName=string&driverId=qwerty12345&driverThirdPartyId=moshe123&driverIsActive=true&sort=createdAt&order=asc&offset=1&limit=1' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{- "data": [
- {
- "id": "qwerty12345",
- "driverThirdPartyId": "moshe123",
- "drivingLicense": "10203040",
- "firstName": "John",
- "lastName": "Doe",
- "driverCode": "12345",
- "imei": "357660101000198",
- "isActive": true
}
]
}