Returns information about one or more geoip database configurations Added in 8.15.0

GET /_ingest/geoip/database/{id}

Path parameters

  • id string | array[string] Required

    Comma-separated list of database configuration IDs to retrieve. Wildcard (*) expressions are supported. To get all database configurations, omit this parameter or use *.

Query parameters

  • Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • databases array[object] Required
      Hide databases attributes Show databases attributes object
      • id string Required
      • version number Required
      • Time unit for milliseconds

      • database object Required

        Additional properties are allowed.

        Hide database attributes Show database attributes object
        • name string Required
        • maxmind object Required

          Additional properties are allowed.

          Hide maxmind attribute Show maxmind attribute object
GET /_ingest/geoip/database/{id}
curl \
 -X GET http://api.example.com/_ingest/geoip/database/{id}
Response examples (200)
{
  "databases": [
    {
      "id": "string",
      "version": 42.0,
      "": 42.0,
      "database": {
        "name": "string",
        "maxmind": {
          "account_id": "string"
        }
      }
    }
  ]
}