Skip to content

Connector Templates API

DRAFT — Internal Developer Use Only

This API reference is for internal development teams.

Overview

What it is: The connector templates API provides access to pre-built templates that simplify collector setup. Templates define default configurations for common data source types.

Endpoints

MethodPathDescriptionAuth required
GET/internal/v1/connector/templates/:entityList templates for an entity typeJWT + API token
GET/internal/v1/connector/templates/:entity/:idGet a specific templateJWT + API token

GET /internal/v1/connector/templates/:entity

List all connector templates for a given entity type.

Path parameters:

ParameterTypeDescription
entitystringEntity type (e.g., ActiveDirectory, AWS)

Request:

http
GET /internal/v1/connector/templates/ActiveDirectory
Authorization: Bearer <token>

Response (200):

json
[
  {
    "id": "tmpl-ad-standard",
    "entity": "ActiveDirectory",
    "name": "Standard AD Collection",
    "description": "Collects users, groups, and computer objects from Active Directory",
    "config": {
      "searchBase": "DC=example,DC=com",
      "objectClasses": ["user", "group", "computer"]
    }
  }
]

GET /internal/v1/connector/templates/:entity/:id

Get details of a specific connector template.

Request:

http
GET /internal/v1/connector/templates/ActiveDirectory/tmpl-ad-standard
Authorization: Bearer <token>

Response (200): Returns the full template definition with all configuration fields and defaults.

Hydden Documentation and Training Hub