List connectors API

edit

This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.

Returns information about all stored connectors.

Request

edit

GET _connector

Prerequisites

edit
  • To sync data using connectors, it’s essential to have the Elastic connectors service running.

Path parameters

edit
size
(Optional, integer) Maximum number of results to retrieve.
from
(Optional, integer) The offset from the first result to fetch.

Examples

edit

The following example lists all connectors:

response = client.connector.list
puts response
GET _connector

The following example lists the first two connectors:

response = client.connector.list(
  from: 0,
  size: 2
)
puts response
GET _connector/?from=0&size=2