Skip to main content
POST
/
fleet
/
drivers
/
remote-sign-out
Sign out a driver
curl --request POST \
  --url https://api.samsara.com/fleet/drivers/remote-sign-out \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "driverId": "12434"
}
'
{
  "driverName": "Michael"
}

Documentation Index

Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The driver of a vehicle.

driverId
string
required

ID of the driver.

Example:

"12434"

Response

OK response.

driverName
string

The name of the driver

Example:

"Michael"