> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useparagon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Triggering Workflows

> Triggering workflows in Paragon

**All Paragon workflows start with a trigger**, which determines when the workflow will run and how data is passed into the workflow.

Click into any of the triggers below to learn more about the trigger type and how to configure it for your workflow.

<CardGroup cols={2}>
  <Card title="App Event" href="/workflows/triggers/app-events">
    Use one event from your app to trigger workflow(s) across any integrations.

    <br />**Example**: "Contact Created" event from your app routes to Salesforce, HubSpot, or Pipedrive (depending on what integrations are connected)
  </Card>

  <Card title="Request" href="/workflows/triggers/request-trigger">
    Send an HTTP request from your app to a specific integration and workflow, optionally receiving a synchronous response.

    <br />**Example**: Expose an HTTP endpoint to a workflow that searches Google Drive documents and returns results to your app.
  </Card>

  <Card title="Integration Trigger" href="/workflows/triggers/integration-trigger">
    Listen for events from your users' integrations, using our prebuilt triggers or [Custom Webhooks](/resources/custom-webhooks).

    <br />**Example**: Listen for new contacts that are created in your user's Salesforce account.
  </Card>

  <Card title="Integration Enabled" href="/workflows/triggers/integration-enabled-trigger">
    Trigger a workflow when an integration is initially connected and set up by your user.

    <br />**Example**: Create custom fields in your user's HubSpot account after they have connected the integration.
  </Card>

  <Card title="Scheduler" href="/workflows/triggers/scheduler-trigger">
    Trigger a workflow on a recurring schedule.

    <br />**Example**: Every day at 12:00 AM, export all Pipedrive activities that were created in the last 24 hours and send them to your app.
  </Card>

  <Card title="API Resource Trigger" href="/workflows/triggers/api-resource-trigger">
    Listen for webhooks from your configured [Resources](/workflows/api-resources), such as your internal API.

    <br />**Example**: Listen for a User Created webhook to fire from your app.
  </Card>
</CardGroup>
