KosmoKrator

data

Samsara CLI for AI Agents

Use the Samsara CLI from KosmoKrator to call Samsara tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Samsara CLI Setup

Samsara can be configured headlessly with `kosmokrator integrations:configure samsara`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure samsara --set access_token="$SAMSARA_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor samsara --json
kosmokrator integrations:status --json

Credentials

Authentication type: Bearer token bearer_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
access_token SAMSARA_ACCESS_TOKEN Secret secret yes Access Token
url SAMSARA_URL URL url no Base URL

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call samsara.samsara_list_vehicles '{"limit":1,"after":"example_after"}' --json
Provider shortcut
kosmo integrations:samsara samsara_list_vehicles '{"limit":1,"after":"example_after"}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs samsara --json
kosmo integrations:docs samsara.samsara_list_vehicles --json
kosmo integrations:schema samsara.samsara_list_vehicles --json
kosmo integrations:search "Samsara" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

samsara.samsara_list_vehicles

List fleet vehicles from Samsara. Returns vehicle details including name, VIN, make, model, year, and GPS location. Supports pagination.

Read read
Parameters
limit, after
Generic call
kosmo integrations:call samsara.samsara_list_vehicles '{"limit":1,"after":"example_after"}' --json
Shortcut
kosmo integrations:samsara samsara_list_vehicles '{"limit":1,"after":"example_after"}' --json

samsara.samsara_get_vehicle

Get detailed information about a specific vehicle by its Samsara ID, including name, VIN, make, model, year, GPS location, and odometer reading.

Read read
Parameters
id
Generic call
kosmo integrations:call samsara.samsara_get_vehicle '{"id":"example_id"}' --json
Shortcut
kosmo integrations:samsara samsara_get_vehicle '{"id":"example_id"}' --json

samsara.samsara_list_drivers

List fleet drivers from Samsara. Returns driver details including name, username, email, phone, and driver license info. Supports pagination.

Read read
Parameters
limit, after
Generic call
kosmo integrations:call samsara.samsara_list_drivers '{"limit":1,"after":"example_after"}' --json
Shortcut
kosmo integrations:samsara samsara_list_drivers '{"limit":1,"after":"example_after"}' --json

samsara.samsara_get_driver

Get detailed information about a specific driver by their Samsara ID, including name, username, email, phone, and driver license details.

Read read
Parameters
id
Generic call
kosmo integrations:call samsara.samsara_get_driver '{"id":"example_id"}' --json
Shortcut
kosmo integrations:samsara samsara_get_driver '{"id":"example_id"}' --json

samsara.samsara_list_sensors

List IoT sensors from Samsara. Returns sensor details including name, type, model, connectivity, and current readings. Supports pagination.

Read read
Parameters
limit, after
Generic call
kosmo integrations:call samsara.samsara_list_sensors '{"limit":1,"after":"example_after"}' --json
Shortcut
kosmo integrations:samsara samsara_list_sensors '{"limit":1,"after":"example_after"}' --json

samsara.samsara_get_current_user

Get the currently authenticated Samsara user profile, including name, email, role, and organization details.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_current_user '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_current_user '{}' --json

samsara.samsara_api_get

Call a safe relative Samsara API path with GET.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_api_get '{}' --json
Shortcut
kosmo integrations:samsara samsara_api_get '{}' --json

samsara.samsara_api_post

Call a safe relative Samsara API path with POST.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_api_post '{}' --json
Shortcut
kosmo integrations:samsara samsara_api_post '{}' --json

samsara.samsara_api_patch

Call a safe relative Samsara API path with PATCH.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_api_patch '{}' --json
Shortcut
kosmo integrations:samsara samsara_api_patch '{}' --json

samsara.samsara_api_delete

Call a safe relative Samsara API path with DELETE.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_api_delete '{}' --json
Shortcut
kosmo integrations:samsara samsara_api_delete '{}' --json

samsara.samsara_get_vehicle_stats

Get latest vehicle stats.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_vehicle_stats '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_vehicle_stats '{}' --json

samsara.samsara_get_vehicle_stats_history

Get historical vehicle stats.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_vehicle_stats_history '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_vehicle_stats_history '{}' --json

samsara.samsara_get_vehicle_stats_feed

Follow a vehicle stats feed.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_vehicle_stats_feed '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_vehicle_stats_feed '{}' --json

samsara.samsara_list_trailers

List trailers.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_trailers '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_trailers '{}' --json

samsara.samsara_get_trailer

Retrieve a trailer.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_trailer '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_trailer '{}' --json

samsara.samsara_create_trailer

Create a trailer.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_create_trailer '{}' --json
Shortcut
kosmo integrations:samsara samsara_create_trailer '{}' --json

samsara.samsara_update_trailer

Update a trailer.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_update_trailer '{}' --json
Shortcut
kosmo integrations:samsara samsara_update_trailer '{}' --json

samsara.samsara_delete_trailer

Delete a trailer.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_delete_trailer '{}' --json
Shortcut
kosmo integrations:samsara samsara_delete_trailer '{}' --json

samsara.samsara_get_trailer_stats

Get latest trailer stats.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_trailer_stats '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_trailer_stats '{}' --json

samsara.samsara_get_trailer_stats_history

Get historical trailer stats.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_trailer_stats_history '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_trailer_stats_history '{}' --json

samsara.samsara_get_trailer_stats_feed

Follow a trailer stats feed.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_trailer_stats_feed '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_trailer_stats_feed '{}' --json

samsara.samsara_list_equipment

List equipment.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_equipment '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_equipment '{}' --json

samsara.samsara_get_equipment

Retrieve equipment.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_equipment '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_equipment '{}' --json

samsara.samsara_get_equipment_stats

Get latest equipment stats.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_equipment_stats '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_equipment_stats '{}' --json

samsara.samsara_get_equipment_stats_history

Get historical equipment stats.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_equipment_stats_history '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_equipment_stats_history '{}' --json

samsara.samsara_get_equipment_stats_feed

Follow an equipment stats feed.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_equipment_stats_feed '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_equipment_stats_feed '{}' --json

samsara.samsara_list_routes

List routes.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_routes '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_routes '{}' --json

samsara.samsara_get_route

Retrieve a route.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_route '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_route '{}' --json

samsara.samsara_create_route

Create a route.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_create_route '{}' --json
Shortcut
kosmo integrations:samsara samsara_create_route '{}' --json

samsara.samsara_update_route

Update a route.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_update_route '{}' --json
Shortcut
kosmo integrations:samsara samsara_update_route '{}' --json

samsara.samsara_delete_route

Delete a route.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_delete_route '{}' --json
Shortcut
kosmo integrations:samsara samsara_delete_route '{}' --json

samsara.samsara_list_addresses

List addresses.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_addresses '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_addresses '{}' --json

samsara.samsara_get_address

Retrieve an address.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_address '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_address '{}' --json

samsara.samsara_create_address

Create an address.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_create_address '{}' --json
Shortcut
kosmo integrations:samsara samsara_create_address '{}' --json

samsara.samsara_update_address

Update an address.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_update_address '{}' --json
Shortcut
kosmo integrations:samsara samsara_update_address '{}' --json

samsara.samsara_delete_address

Delete an address.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_delete_address '{}' --json
Shortcut
kosmo integrations:samsara samsara_delete_address '{}' --json

samsara.samsara_list_tags

List tags.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_tags '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_tags '{}' --json

samsara.samsara_get_tag

Retrieve a tag.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_tag '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_tag '{}' --json

samsara.samsara_create_tag

Create a tag.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_create_tag '{}' --json
Shortcut
kosmo integrations:samsara samsara_create_tag '{}' --json

samsara.samsara_update_tag

Update a tag.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_update_tag '{}' --json
Shortcut
kosmo integrations:samsara samsara_update_tag '{}' --json

samsara.samsara_delete_tag

Delete a tag.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_delete_tag '{}' --json
Shortcut
kosmo integrations:samsara samsara_delete_tag '{}' --json

samsara.samsara_list_users

List users.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_users '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_users '{}' --json

samsara.samsara_get_user

Retrieve a user.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_user '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_user '{}' --json

samsara.samsara_list_defects

List DVIR defects.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_defects '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_defects '{}' --json

samsara.samsara_get_defects_history

Get historical DVIR defects.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_defects_history '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_defects_history '{}' --json

samsara.samsara_list_defect_types

List defect types.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_defect_types '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_defect_types '{}' --json

samsara.samsara_list_documents

List documents.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_documents '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_documents '{}' --json

samsara.samsara_get_document

Retrieve a document.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_document '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_document '{}' --json

samsara.samsara_create_document

Create a document.

Write write
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_create_document '{}' --json
Shortcut
kosmo integrations:samsara samsara_create_document '{}' --json

samsara.samsara_list_document_types

List document types.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_list_document_types '{}' --json
Shortcut
kosmo integrations:samsara samsara_list_document_types '{}' --json

samsara.samsara_get_document_type

Retrieve a document type.

Read read
Parameters
none
Generic call
kosmo integrations:call samsara.samsara_get_document_type '{}' --json
Shortcut
kosmo integrations:samsara samsara_get_document_type '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

samsara.samsara_list_vehicles 2 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_vehicles --json
ParameterTypeRequiredDescription
limit integer no Maximum number of vehicles to return per page (default: 100, max: 512).
after string no Pagination cursor - pass the "pagination.endCursor" value from a previous response to fetch the next page.
samsara.samsara_get_vehicle 1 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_vehicle --json
ParameterTypeRequiredDescription
id string yes The Samsara vehicle ID (e.g., "123456789012345").
samsara.samsara_list_drivers 2 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_drivers --json
ParameterTypeRequiredDescription
limit integer no Maximum number of drivers to return per page (default: 100, max: 512).
after string no Pagination cursor - pass the "pagination.endCursor" value from a previous response to fetch the next page.
samsara.samsara_get_driver 1 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_driver --json
ParameterTypeRequiredDescription
id string yes The Samsara driver ID (e.g., "123456789012345").
samsara.samsara_list_sensors 2 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_sensors --json
ParameterTypeRequiredDescription
limit integer no Maximum number of sensors to return per page (default: 100, max: 512).
after string no Pagination cursor - pass the "pagination.endCursor" value from a previous response to fetch the next page.
samsara.samsara_get_current_user 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_api_get 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_api_get --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_api_post 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_api_post --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_api_patch 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_api_patch --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_api_delete 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_api_delete --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_vehicle_stats 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_vehicle_stats --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_vehicle_stats_history 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_vehicle_stats_history --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_vehicle_stats_feed 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_vehicle_stats_feed --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_trailers 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_trailers --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_trailer 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_trailer --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_create_trailer 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_create_trailer --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_update_trailer 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_update_trailer --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_delete_trailer 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_delete_trailer --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_trailer_stats 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_trailer_stats --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_trailer_stats_history 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_trailer_stats_history --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_trailer_stats_feed 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_trailer_stats_feed --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_equipment 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_equipment --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_equipment 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_equipment --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_equipment_stats 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_equipment_stats --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_equipment_stats_history 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_equipment_stats_history --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_equipment_stats_feed 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_equipment_stats_feed --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_routes 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_routes --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_route 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_route --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_create_route 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_create_route --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_update_route 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_update_route --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_delete_route 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_delete_route --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_addresses 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_addresses --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_address 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_address --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_create_address 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_create_address --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_update_address 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_update_address --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_delete_address 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_delete_address --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_tags 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_tags --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_tag 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_tag --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_create_tag 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_create_tag --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_update_tag 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_update_tag --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_delete_tag 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_delete_tag --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_users 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_users --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_user 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_user --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_defects 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_defects --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_defects_history 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_defects_history --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_defect_types 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_defect_types --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_documents 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_documents --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_document 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_document --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_create_document 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_create_document --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_list_document_types 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_list_document_types --json
ParameterTypeRequiredDescription
No parameters.
samsara.samsara_get_document_type 0 parameters
Schema command
kosmo integrations:schema samsara.samsara_get_document_type --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.