For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTAdd GBAC to a job
        • POSTAdd watchers to a job
        • POSTAssign a task to a user
        • POSTBulk delete root jobs
        • POSTCancel jobs
        • POSTClaim a task
        • POSTClone automation
        • POSTContinue a job from a specified task
        • POSTCreate automation
        • POSTCreate trigger
        • DELDelete a root job and all related items
        • DELDelete automation
        • POSTDelete root jobs and related items
        • DELDelete trigger
        • DELDelete triggers by action ID
        • GETExport automation
        • GETExport large data for a job or task variable
        • GETExport trigger
        • POSTFinish a manual task
        • GETGet a job
        • GETGet a task by ID
        • GETGet automation
        • GETGet automations
        • GETGet event definition
        • GETGet jobs
        • GETGet manual task controller
        • GETGet tasks
        • GETGet trigger
        • GETGet triggers
        • PUTImport automations
        • PUTImport triggers
        • POSTPauses jobs
        • POSTRelease a currently assigned task
        • DELRemove all GBAC from a job
        • DELRemove GBAC from a job
        • PUTReplace all GBAC from a job with the provided list
        • POSTResume jobs
        • POSTRetry a task
        • POSTRevert a job
        • POSTRun endpoint trigger with POST
        • POSTRun manual trigger
        • GETSearch system events
        • POSTStart a job
        • POSTUnwatch job
        • POSTUnwatch jobs
        • PATCHUpdate automation
        • PATCHUpdate trigger
        • POSTValidate automation
        • POSTValidate trigger
        • POSTWatch a job
        • POSTWatch jobs
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceOperations Manager

Get triggers

GET
http://localhost:3000/operations-manager/triggers
GET
/operations-manager/triggers
$curl http://localhost:3000/operations-manager/triggers \
> -u "<username>:<password>"
1{
2 "message": "Successfully created the requested item",
3 "data": [
4 {
5 "name": "Cisco IOS upgrade",
6 "description": "Turn up the port",
7 "enabled": true,
8 "actionType": "automations",
9 "actionId": "string",
10 "options": {
11 "targetType": "instance",
12 "targetIdentifier": "string",
13 "chooseTargetAtRuntime": true,
14 "actionId": "0a2f"
15 },
16 "lastExecuted": 1,
17 "migrationVersion": 1,
18 "createdBy": "admin@pronghorn",
19 "created": "2024-01-15T09:30:00Z",
20 "lastUpdatedBy": "admin@pronghorn",
21 "lastUpdated": "2024-01-15T09:30:00Z",
22 "type": null,
23 "verb": null,
24 "routeName": "runSoftwareUpgrade",
25 "schema": {},
26 "_id": "string",
27 "jst": "string"
28 }
29 ],
30 "metadata": {}
31}
Searches the Trigger collection.
Was this page helpful?
Previous

Import automations

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Query parameters

containsstringOptional
the value for a contains query. if the property with the key of containsField does not have a value that contains this string, then filter out the document
containsFieldstringOptional
the field to run a contains query on
equalsstringOptional
the value for an equals query. if the property with the key of equalsField does not have a value that equals this string, then filter out the document
equalsFieldstringOptional
the field to run an equals query on
startsWithstringOptional
the value for a startsWith query. if the property with the key of startsWithField does not have a value that starts with this string, then filter out the document
startsWithFieldstringOptional
the field to run a startsWith query on
greaterThanFieldstringOptional
the field to run a greater than query on
greaterThanstringOptional
the value to use for the greater than query. If the value is a valid date string, then it will be converted to a unix timestamp in milliseconds
lessThanFieldstringOptional
the field to run a less than query on
lessThanstringOptional
the value to use for the less than query. If the value is a valid date string, then it will be converted to a unix timestamp in milliseconds
enabledbooleanOptional
if true, then only return trigger documents that are enabled
actionIdstringOptional
if provided, only return trigger documents with this action id
limitintegerOptional>=0Defaults to 25
Number of results to return. Used for pagination.
skipintegerOptional>=0Defaults to 0
Number of results to skip. Used for pagination.
orderenumOptionalDefaults to 1

The sort direction: 1 for ascending or -1 for descending.

Allowed values:
sortenumOptionalDefaults to name
Field to sort by. Default is name.
Allowed values:

Response

The Triggers that matched the search query.
messagestring

A human-readable message summarizing the result of the operation

datalist of objects
Any successfully retrieved information related to the request.
metadatamap from strings to any

Any structured, wordy or machine-readable information related to the result of the operation. For success responses, this may contain information like pagination values from a search operation.

Errors

500
Internal Server Error