Skip to main content
POST
/
v1
/
gateway
/
triggers
JavaScript
import Triglit from 'triglit';

const client = new Triglit({
  apiKey: 'My API Key',
});

const trigger = await client.triggers.create({
  config: {},
  name: 'x',
  type: 'schedule',
  workflowVersionId: 'x',
});

console.log(trigger.id);
{
  "id": "trg_abc123def456",
  "tenantId": "tenant_123",
  "subTenantId": "sub_tenant_456",
  "workflowVersionId": "wfv_abc123def456",
  "name": "User Registration Webhook",
  "type": "webhook",
  "config": {},
  "isActive": true,
  "createdAt": "2024-01-15T10:30:00.000Z",
  "updatedAt": "2024-01-15T10:30:00.000Z"
}

Authorizations

X-API-Key
string
header
required

Headers

X-API-Key
string
required

Body

application/json
workflowVersionId
string
required
Minimum length: 1
name
string
required
Required string length: 1 - 255
type
enum<string>
required
Available options:
schedule,
webhook
config
object
required

Response

id
string
required
Example:
tenantId
string
required
Example:
workflowVersionId
string
required
Example:
name
string
required
Example:
type
enum<string>
required
Available options:
schedule,
webhook
Example:
config
object
required
isActive
boolean
required
Example:
createdAt
string
required
Example:
updatedAt
string
required
Example:
subTenantId
string
Example: