Authentication

Datadog の API に対するリクエストはすべて認証される必要があります。 データを書き込むリクエストにはレポートアクセスが必要で、API key が必要です。 データを読み取るリクエストにはフルアクセスが必要で、application key も必要です。

注: すべての Datadog API クライアントは、デフォルトで Datadog US サイト API を使用するように構成されています。 Datadog EU サイトを使用している場合は、環境変数 DATADOG_HOSThttps://api.datadoghq.euに設定するか、クライアントを作成するときにこの値を直接オーバーライドします。

アカウントの API とアプリケーションキーを管理します

GET https://api.ap1.datadoghq.com/api/v1/validatehttps://api.datadoghq.eu/api/v1/validatehttps://api.ddog-gov.com/api/v1/validatehttps://api.datadoghq.com/api/v1/validatehttps://api.us3.datadoghq.com/api/v1/validatehttps://api.us5.datadoghq.com/api/v1/validate

概要

API キー (APP キーとは異なります)が有効かどうかを確認します。有効でない場合は 403 を返します。

応答

OK

Represent validation endpoint responses.

Expand All

フィールド

種類

説明

valid

boolean

Return true if the authentication response is valid.

{
  "valid": true
}

Authentication error

Error response object.

Expand All

フィールド

種類

説明

errors [required]

[string]

Array of errors returned by the API.

{
  "errors": [
    "Bad Request"
  ]
}

Too many requests

Error response object.

Expand All

フィールド

種類

説明

errors [required]

[string]

Array of errors returned by the API.

{
  "errors": [
    "Bad Request"
  ]
}

コード例

/**
 * Validate API key returns "OK" response
 */

import { client, v1 } from "@datadog/datadog-api-client";

const configuration = client.createConfiguration();
const apiInstance = new v1.AuthenticationApi(configuration);

apiInstance
  .validate()
  .then((data: v1.AuthenticationValidationResponse) => {
    console.log(
      "API called successfully. Returned data: " + JSON.stringify(data)
    );
  })
  .catch((error: any) => console.error(error));

Instructions

First install the library and its dependencies and then save the example to example.ts and run following commands:

    
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comddog-gov.com" DD_API_KEY="<DD_API_KEY>" tsc "example.ts"

PREVIEWING: domalessi/remove-preview-labels