Skip to main content
POST
/
v1
/
machines
/
list
Get machines
curl --request POST \
  --url https://api.samsara.com/v1/machines/list \
  --header 'Authorization: Bearer <token>'
{
  "machines": [
    {
      "id": 123,
      "name": "Freezer ABC",
      "notes": "This is in the left hallway behind the conveyor belt"
    }
  ]
}

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.

Response

List of machine objects.

machines
object[]