v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Integrations

List values for a trigger config field

Resolves the ids a triggerConfig needs (Drive folders, Sheets spreadsheets and tabs, Asana workspaces and projects, Salesforce sobjects and fields, Gmail labels, Outlook folders and calendars, OneDrive folders). Take resourceType from a trigger type's configFields, and send each result's id as the value of that config field. parent is required when browsing inside another resource: spreadsheetId for googlesheets_sheets, workspaceGid for asana_projects, sobjectName for salesforce_sobject_fields, and an optional folder path for onedrive_folders. The connected account must belong to your account and match the resource's toolkit. Requires a USER API key.

get/public/v1/integrations/trigger-resources

Query parameters

resourceType'gmail_labels' | 'googlesheets_spreadsheets' | 'googlesheets_sheets' | 'googledocs_documents' | 'googledrive_folders' | 'googledrive_shared_drives' | 'onedrive_folders' | 'asana_workspaces' | 'asana_projects' | 'salesforce_sobjects' | 'salesforce_sobject_fields' | 'outlook_folders' | 'outlook_calendars' required
Example:gmail_labels
connectedAccountIdinteger required
Example:1
parentstring
Example:example
querystring
Example:example
limitinteger
Example:1

Response

Values available for the requested resource type

resourceType'gmail_labels' | 'googlesheets_spreadsheets' | 'googlesheets_sheets' | 'googledocs_documents' | 'googledrive_folders' | 'googledrive_shared_drives' | 'onedrive_folders' | 'asana_workspaces' | 'asana_projects' | 'salesforce_sobjects' | 'salesforce_sobject_fields' | 'outlook_folders' | 'outlook_calendars' required
parentstring nullable required
totalnumber required

Example response

{
  "resourceType": "gmail_labels",
  "parent": "example",
  "results": [
    {
      "id": "example",
      "name": "example"
    }
  ],
  "total": 1
}