Wexa AI
  1. Connectors
Wexa AI
  • Wexa AI
  • Use Cases and Workflows
  • API Reference
  • Troubleshooting Guide
  • Onboarding
    • Getting Started with Wexa
    • Hire your AI Coworker
  • AI Coworker Creation
    • Create your First AI Coworker
    • Process Flows
    • Creating your First Agent
    • Schedule a Process Flow
    • Executing a Process Flow
    • Settings - Input Form
    • History
  • Tables
    • Intro to Tables
    • Adding records to Tables
    • Table Triggers
  • Knowledge Base
    • Intro to Knowledge Base
  • Connectors and MCP Servers
    • Adding a New Connector
    • Adding an MCP Server
    • Setting up Connectors Triggers
  • API Endpoints
    • Project
      • create project
      • Get all projects
      • Get project
      • update project
      • Delete project
    • Agentflows
      • create agentflow
      • get agentflows
      • Get agentflow by projectId and UserId
      • get agentflow by id
      • Add skilled agent to agentflow
      • Update skilled agent
    • Connectors
      • Configure connector
        POST
      • Get config
        GET
      • Retrieve linkedin params
        GET
      • get connectors by projectid
        GET
      • get connector by Id
        GET
      • Delete a connector
        DELETE
      • connector update status
        POST
      • get all available trigger actions
        GET
    • Skills
      • create skill
      • get skills
      • get skills by category'
      • get skills by id
      • skills by name
    • Executeflow
      • create executeflow
      • get executions
      • execute agentflow
      • pause executeflow
      • resume execution
      • cancel executeflow
      • get execution by execution id
      • get execution details for monitoring
    • Actions
      • Customer
        • get customer
        • Get credit history
      • create action
      • get action
    • Files
      • Connectors and MCP Servers
      • upload files
      • get files by fileid
      • get connector by fileid
      • get files by connector_id
    • Inbox
      • Create inbox
      • Update inbox at runtime
      • Update anamoly detection inbox
      • Update Preview Inbox
      • get inbox
    • Tags
      • tags
    • Tasks
      • get tasks
      • get task by id
      • Pause running task
      • resume task
      • Stop task
    • Tables
      • Dashboard
        • get dashboard
        • refresh dashboard
        • delete component in dashboard
      • Insert row in a table
      • Get records
      • Get record by id
      • Update record by id
      • create table
      • create database
      • get tables
      • get records list
      • get table names
      • delete record
      • delete a column
    • Settings
      • get settings
    • Marketplace
      • get all connectors
      • get marketplace coworkers
      • get marketplace coworker by id
    • Coworker schedules
      • get schedules
      • create coworker schedule
      • get schedule coworker by its id
      • update schedule by its id
      • delete schedule by its id
    • Analytics
      • Get analytics
    • Marketplace coworkers
      • hire a coworker
      • check marketplace coworker update
    • Project member
      • project_member_summary
      • project_member
    • Available Connectors
      • Actions
    • Execution Details
      • Execution details
    • Knowledge Base
      • File Upload
    • Create apikey
      • Generate apikey
  1. Connectors

get all available trigger actions

GET
https://api.wexa.ai/connectors/{projectID}/trigger_actions
Last modified:2025-04-25 10:36:51

Get All Trigger Actions by Project ID#

Retrieve a comprehensive list of all trigger actions associated with a specific project by providing its unique projectID. This endpoint allows you to access information about the trigger actions configured within the project, facilitating the automation of workflows based on specific events or conditions.

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Path Params

Query Params

Header Params

Responses

🟢200get all available trigger actions
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.wexa.ai/connectors//trigger_actions?projectID=67fdea40aac77be632954f13' \
--header 'x-api-key: <api-key>'
Response Response Example
[
    {
        "_id": "680608a4064a778a5f18f9eb",
        "name": "File Upload - company_profile.pdf-680608a4064a778a5f18f9e9 - Process files",
        "logo": "https://klotdev.blob.core.windows.net/connectors/file_upload.png",
        "category": "file_upload",
        "description": "Processes all the files that are uploaded as a part of this connector"
    },
    {
        "_id": "680608a6064a778a5f18f9ee",
        "name": "File Upload - product_details.docx-680608a6064a778a5f18f9ec - Process files",
        "logo": "https://klotdev.blob.core.windows.net/connectors/file_upload.png",
        "category": "file_upload",
        "description": "Processes all the files that are uploaded as a part of this connector"
    },
    {
        "_id": "680608ac064a778a5f18f9f1",
        "name": "File Upload - company_profile.pdf-680608ac064a778a5f18f9ef - Process files",
        "logo": "https://klotdev.blob.core.windows.net/connectors/file_upload.png",
        "category": "file_upload",
        "description": "Processes all the files that are uploaded as a part of this connector"
    },
    {
        "_id": "680608ad064a778a5f18f9f4",
        "name": "File Upload - product_details.docx-680608ad064a778a5f18f9f2 - Process files",
        "logo": "https://klotdev.blob.core.windows.net/connectors/file_upload.png",
        "category": "file_upload",
        "description": "Processes all the files that are uploaded as a part of this connector"
    },
    {
        "_id": "68061b20fc2e1fb8597c7758",
        "name": "File Upload - Durga_prasad_resume (1).pdf-68061b20fc2e1fb8597c7756 - Process files",
        "logo": "https://klotdev.blob.core.windows.net/connectors/file_upload.png",
        "category": "file_upload",
        "description": "Processes all the files that are uploaded as a part of this connector"
    },
    {
        "_id": "6806811cc517ff5238533cd8",
        "name": "File Upload - Durga_prasad_resume (3).pdf-6806811bc517ff5238533cd6 - Process files",
        "logo": "https://klotdev.blob.core.windows.net/connectors/file_upload.png",
        "category": "file_upload",
        "description": "Processes all the files that are uploaded as a part of this connector"
    }
]
Modified at 2025-04-25 10:36:51
Previous
connector update status
Next
create skill