OpenAPI
  • Quick Start
  • Documentation
    • Instruction
    • Log Update
    • Glossary
  • Integration Instruction
    • Interface Specification
    • Callback Rules
    • Public Parameters
  • Best Practice
    • Integration Procedures
    • Integration Solution
  • Standardized Interface
    • Obtain Platform Access Credentials
    • Obtain Vehicle Health Check Report
    • Create Service Order Callback
    • Release Health Check Report Callback
      • Basic Integration: Embedded URL to H5 Health Check Report
      • Deep Integration: Comprehensive Health Check Result Data
    • Vehicle Condition & Maintenance Plan Callback
  • Customized Interface
    • Synchronize Vehicle Service Item Info
    • Synchronize Work Procedure Info
    • Synchronize Work Report Info
      • Basic Integration: Embedded URL to H5 Work Report
      • Deep Integration: Comprehensive Work Result Data
  • FAQ
    • Code Encryption DEMO
    • HTTPS Settings Instruction
  • ⚙️Translation
    • 简体中文
Powered by GitBook
On this page

Was this helpful?

  1. Integration Instruction

Interface Specification

PreviousGlossaryNextCallback Rules

Last updated 3 years ago

Was this helpful?

Developers must abide by the following agreements when integrating with the open platform:

Item

Instruction

Transfer Protocol

Use HTTPS transmission to ensure security

Request Method

Use POST method

Content-type

Use JSON format for both request and response data

Encoding

UTF-8 encoding

Signature Algorithm

When the open platform callbacks the URL provided by the developer, the signature value parameter encrypted with the Sha1 algorithm will be attached. For details, please refer to

Safety_Requirements

All requests are verified by token parameter, and the request head needs to carry it for verification. The token parameter is valid for 7 days

The open platform provides a global API. Date and time are represented by 13-bit timestamps. The unit: milliseconds, which represents the number of milliseconds since 1970-01-01 00:00:00. For example: 1610455429000 represents 2021-01-12 20:43:49 (GMT+8)

Code Encryption DEMO