Skip to main content
GET
/
users
/
{id}
Retrieve a user
curl --request GET \
  --url https://api.samsara.com/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "authType": "default",
    "email": "user@company.com",
    "id": "123",
    "name": "Bob Smith",
    "roles": [
      {
        "expireAt": "2025-08-13T19:08:25Z",
        "role": {
          "id": "8a9371af-82d1-4158-bf91-4ecc8d3a114c",
          "name": "Full Admin"
        },
        "tag": {
          "id": "3914",
          "name": "East Coast",
          "parentTagId": "4815"
        }
      }
    ]
  }
}

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.

Path Parameters

id
string
required

Unique identifier for the user.

Response

Returns the specified user.

A single user.

data
object

A user object.