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"
  ]
}

コード例

                  # Curl command
curl -X GET "https://api.ap1.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/v1/validate" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}"

PREVIEWING: aliciascott/DOCS-10258