Get IP geolocation database configuration API

edit

Get IP geolocation database configuration API

edit

Returns information about one or more IP geolocation database configurations.

GET /_ingest/ip_location/database/my-database-id

Request

edit

GET /_ingest/ip_location/database/<database>

GET /_ingest/ip_location/database

Prerequisites

edit
  • If the Elasticsearch security features are enabled, you must have the manage cluster privilege to use this API.

Path parameters

edit
<database>

(Optional, string) 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

edit
master_timeout
(Optional, time units) Period to wait for the master node. If the master node is not available before the timeout expires, the request fails and returns an error. Defaults to 30s. Can also be set to -1 to indicate that the request should never timeout.

Examples

edit

Get information for a specific IP geolocation database configuration

edit
GET /_ingest/ip_location/database/my-database-id

The API returns the following response:

{
  "databases" : [
    {
      "id" : "my-database-id",
      "version" : 1,
      "modified_date_millis" : 1723040276114,
      "database" : {
        "name" : "GeoIP2-Domain",
        "maxmind" : {
          "account_id" : "1234567"
        }
      }
    }
  ]
}