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
| Method | Path | Description | Auth required |
|---|---|---|---|
GET | /internal/v1/connector/templates/:entity | List templates for an entity type | JWT + API token |
GET | /internal/v1/connector/templates/:entity/:id | Get a specific template | JWT + API token |
GET /internal/v1/connector/templates/:entity
List all connector templates for a given entity type.
Path parameters:
| Parameter | Type | Description |
|---|---|---|
entity | string | Entity 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.
