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
    • 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
  • API References
  • List All User Events
  • Swagger Doc

Was this helpful?

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

Events API Endpoints

Base URLs

https://events-api.dev.dimo.zone

https://events-api.dimo.zone


API References

List All User Events

GET {baseUrl}/v1/events

Lists the user's events in reverse chronological order.

Query Parameters

Name
Type
Description

device_id

String

Filter by DIMO deviceId, this is relevant when the event relates to a device.

type

String

Filter by type, type can be either User or Device.

sub_type

String

Filter by subType of the event. - subType for User: Created, TokensIssued, and ReferralCompleted - subType for Device: Created, Minted, Deleted, IntegrationCreated, IntegrationDeleted, and OdometerUpdated.

Headers

Name
Type
Description

Authorization*

String

[
    {
        "id": "2b9GcoHZYKiwHZmZHBtFdxzy51v",
        "type": "User",
        "subType": "Created",
        "userId": "CioweGY5RDI2MzIzQWI0OTE3OUE2ZDU3QzI2NTE1QjAxRGUwMTg1NTM3ODcSBHdlYjM",
        "deviceId": null,
        "timestamp": "2024-01-18T23:19:22.694806Z",
        "data": {
            "method": "web3",
            "userId": "CioweGY5RDI2MzIzQWI0OTE3OUE2ZDU3QzI2NTE1QjAxRGUwMTg1NTM3ODcSBHdlYjM",
            "timestamp": "2024-01-18T23:19:22.694805687Z"
        }
    }
]

Swagger Doc

Last updated 1 year ago

Was this helpful?

Bearer authentication using the access_token generated from the .

Web3 challenge
Swagger UI
Logo