List Connectors Endpoint
GET
/services/connectors/
const url = 'https://example.com/services/connectors/';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/services/connectors/ \ --header 'Authorization: Bearer <token>'List persistent connectors supplied by an installed overlay.
Community’s no-op extension returns an empty list; one-shot WFS, OGC API, ArcGIS, and STAC imports remain on their existing free endpoints.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
ConnectorListResponse
object
connectors
required
Connectors
Array<object>
ConnectorDefinitionResponsePublic, non-secret connector capabilities advertised by an overlay.
object
config_schema
required
Config Schema
object
key
additional properties
any
display_name
required
Display Name
string
name
required
Name
string
supports_credentials
Supports Credentials
boolean
supports_scheduled_sync
Supports Scheduled Sync
boolean
Example
{ "connectors": [ { "supports_credentials": false, "supports_scheduled_sync": false } ]}Bad request — invalid payload
Media type application/problem+json
Unauthorized — missing or invalid credentials
Media type application/problem+json
Forbidden — caller lacks write access
Media type application/problem+json
Not found
Media type application/problem+json
Conflict — resource state prevents the operation
Media type application/problem+json
Validation error
Media type application/problem+json
Too many requests — retry after the advertised interval
Media type application/problem+json
Headers
Section titled “Headers ” Retry-After
integer
Seconds until the request may be retried
Internal server error
Media type application/problem+json
Service unavailable — the database could not serve the request
Media type application/problem+json