LogoLogo
DocsHomeSupportContact
  • Getting Started
    • Introduction
    • Build on DIMO
  • DEVELOPER GUIDE
    • Developer Overview
    • Developer Console
    • Authentication
    • DIMO Developer SDKs
      • Data SDK
      • Login with DIMO SDK
        • React Component
        • Login with DIMO Redirect
        • Core Functionalities
      • TypeScript: Transactions SDK
      • SDK Release Notes
    • Low Code Tools
      • n8n: Getting Started
    • Permissions Contract: SACD
    • DIMO Credits
    • Response Types
    • Rate Limits
    • Developer FAQ
    • Developer Changelogs
    • Troubleshooting Common Issues
  • API References
    • Overview of DIMO API
    • Attestation API
    • Device Definitions API
    • Identity API
      • Schema & Types
      • Scalars
      • Nodes & Objects
        • AftermarketDevice
        • AftermarketDeviceConnection
        • DCN
        • DCNConnection
        • DeveloperLicense
        • DeviceDefinition
        • Earning
        • EarningsConnection
        • Manufacturer
        • Sacd
        • SyntheticDevice
        • Vehicle
        • VehicleConnection
        • VehicleEarnings
        • UserRewards
      • Common Queries
    • Telemetry API
      • Schema & Types
      • Scalars
      • Nodes & Objects
        • Vehicle Signals
      • Common Queries
    • Token Exchange API
    • Trips API
    • Valuations API
  • DIMO Webhooks
    • Webhooks
    • Webhooks API Reference
  • DIMO Hardware
    • Introduction
    • DIMO Hardware Application
    • DIMO Manufacturing License
    • Development & Certification
    • Audits & Assessments
      • Hardware & Security Audit
      • Customer Experience Assessment
      • Integration Testing & Quality Control
      • Final Approval
    • DIMO Device License
      • Device Minting Certificates
    • Essential Documents
      • Hardware & Security Audit Checklist
      • Approved Hardware Auditors
      • DIMO Memorandum of Understanding (MOU)
  • Additional References
    • Developer License
    • DIMO GraphQL Basics
  • Deprecated Resources
    • Guides
      • Developer Journey
      • Quick Start Guide
      • Hello World
      • Code Exchange Flow
    • Data Availability
Powered by GitBook
On this page
  • Base URLs
  • Vehicle Commands
  • Send a Vehicle Command to Lock the Doors
  • Send a Vehicle Command to Unlock the Doors
  • Send a Vehicle Command to Open the Frunk
  • Send a Vehicle Command to Open the Trunk
  • Swagger Doc

Was this helpful?

  1. Deprecated Resources
  2. Deprioritized APIs
  3. Devices API

Devices Endpoints

Last updated 5 months ago

Was this helpful?

Base URLs

https://devices-api.dimo.zone


Vehicle Commands

Developer Notes

To access the vehicle commands, a token exchange transaction is required to obtain a vehicle JWT to get permission to access the vehicle's commands. Please check Token Exchange API prior to using this endpoint.

Send a Vehicle Command to Lock the Doors

POST /v1/vehicle/{tokenId}/commands/doors/lock

Sends a vehicle command to lock the doors.

Path Parameters

Name
Type
Description

tokenId*

String

Vehicle token ID, this is the token ID of your vehicle NFT. A prerequisite is to obtain a token that is permitted to access trips data for this specific vehicle.

Headers

Name
Type
Description

Authorization*

String

{
    "requestId": "2bh8fNMoix9qduuiE9NHUzTGpZx"
}
{
    "code": 409,
    "message": "Integration is not capable of this command with this device."
}

Send a Vehicle Command to Unlock the Doors

Sends a vehicle command to unlock the doors.

Path Parameters

Name
Type
Description

tokenId*

String

Vehicle token ID, this is the token ID of your vehicle NFT. A prerequisite is to obtain a token that is permitted to access trips data for this specific vehicle.

Headers

Name
Type
Description

Authorization*

String

{
    "requestId": "2bh8fNMoix9qduuiE9NHUzTGpZx"
}
{
    "code": 409,
    "message": "Integration is not capable of this command with this device."
}

Send a Vehicle Command to Open the Frunk

Sends a vehicle command to open the frunk.

Path Parameters

Name
Type
Description

tokenId*

String

Vehicle token ID, this is the token ID of your vehicle NFT. A prerequisite is to obtain a token that is permitted to access trips data for this specific vehicle.

Headers

Name
Type
Description

Authorization*

String

{
    "requestId": "2bh8fNMoix9qduuiE9NHUzTGpZx"
}
{
    "code": 409,
    "message": "Integration is not capable of this command with this device."
}

Send a Vehicle Command to Open the Trunk

Sends a vehicle command to open the trunk.

Path Parameters

Name
Type
Description

tokenId*

String

Vehicle token ID, this is the token ID of your vehicle NFT. A prerequisite is to obtain a token that is permitted to access trips data for this specific vehicle.

Headers

Name
Type
Description

Authorization*

String

{
    "requestId": "2bh8fNMoix9qduuiE9NHUzTGpZx"
}
{
    "code": 409,
    "message": "Integration is not capable of this command with this device."
}

Swagger Doc

Vehicle JWT in .

POST /v1/vehicle/{tokenId}/commands/doors/unlock

Vehicle JWT in .

POST /v1/vehicle/{tokenId}/commands/frunk/open

Vehicle JWT in .

POST /v1/vehicle/{tokenId}/commands/trunk/open

Vehicle JWT in .

🔏
{baseUrl}
{baseUrl}
{baseUrl}
{baseUrl}
Bearer Authentication format
Bearer Authentication format
Bearer Authentication format
Bearer Authentication format
Swagger UI
Devices API Swagger Doc
Logo