Connector
Create Connector
Create a new connector.
post/api/v1/connector
Headers
idempotency-keystring
The request's idempotency key
Request body
Example request
{
"allowedEventTypes": [
"user.signup",
"user.deleted"
],
"description": "Example connector description",
"instructions": "Markdown-formatted instructions",
"logo": "https://example.com/logo.png",
"name": "My first connector",
"transformation": "function handler(webhook) { /* ... */ }",
"uid": "unique-identifier"
}Response
Example response
{
"allowedEventTypes": [
"user.signup",
"user.deleted"
],
"featureFlags": [
"cool-new-feature"
],
"id": "trtmpl_1srOrx2ZWZBpBUvZwXKQmoEYga2",
"orgId": "org_1srOrx2ZWZBpBUvZwXKQmoEYga2",
"uid": "unique-identifier"
}Changes
No recorded changes to this endpoint across all 5 revisions of this API.