Wexa AI
  1. Connectors
Wexa AI
  • Wexa AI
  • Getting Started with Wexa AI
  • Use Cases and Workflows
  • API Reference
  • Tutorials
  • Troubleshooting Guide
  • 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
      • 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
    • Customer
      • get customer
      • Get credit history
    • Actions
      • create action
      • get action
    • Files
      • upload files
      • get files by fileid
      • get connector by fileid
      • get files by connector_id
    • Inbox
      • get inbox
    • Tags
      • tags
    • Tasks
      • get tasks
      • get task by id
      • Pause running task
      • resume task
      • Stop task
    • Tables
      • create table
      • create database
      • get tables
      • get records list
      • get table names
      • delete record
      • delete a column
    • Dashboard
      • get dashboard
      • refresh dashboard
      • delete component in dashboard
    • 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
  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 Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.wexa.ai/connectors//trigger_actions?projectID=67fdea40aac77be632954f13' \
--header 'x-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"
  }
]

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Path Params
projectID
string 
required
Query Params
projectID
string 
required
Example:
67fdea40aac77be632954f13
Header Params
x-api-key
string 
required
Example:
{{x-api-key}}

Responses

🟢200get all available trigger actions
application/json
Body
array of:
_id
string 
required
name
string 
required
logo
string 
required
category
string 
required
description
string 
required
Modified at 2025-04-25 10:36:51
Previous
connector update status
Next
create skill