Attestation (認証) API

ベース URL

https://attestation-api.dimo.zone


車両VIN VCを作成する

POST /v1/vc/vin/{tokenId}

指定された車両のVIN VCがまだ作成されていない場合、または有効期限が切れている場合は、そのVCを生成します。有効期限が切れていないVCが見つかった場合は、そのVCを返します。

応答からを取得したら、それを使用して、車両の VIN を取得するなど、Telemetry APIrawVCでクエリを実行できます車両のVINを取得するテレメトリAPI

パスパラメータ

名前
タイプ
説明

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.

ヘッダー

名前
タイプ
説明

Authorization*

String

応答

{
    "vcUrl": "https://telemetry-api.dimo.zone/query",
    "vcQuery": "query {vinVCLatest(tokenId: <TOKEN_ID>) {rawVC}}",
    "message": "VC generated successfully. Retrieve using the provided GQL URL and query parameter."
}

VIN VC の作成: データ SDK 関数呼び出し

await dimo.attestation.createVinVC({
    vehicleJwt, 
    tokenId
});

Last updated

Was this helpful?