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
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTAdd service to catalog store
        • POSTCreate a new service order
        • POSTDelete a service
        • GETExport a catalog item
        • GETGet current user
        • GETGet form data
        • GETGet form ID for service
        • GETGet multiple forms
        • GETGet user groups
        • GETGet workflows
        • POSTImport a catalog items
        • POSTInvoke service order
        • GETList of service models
        • GETList services in store
        • POSTUpdate a service in catalog store
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceService Catalog

Get workflows

GET
http://localhost:3000/service_catalog/GetWorkflows
GET
/service_catalog/GetWorkflows
$curl http://localhost:3000/service_catalog/GetWorkflows \
> -u "<username>:<password>"
1[
2 {
3 "_id": "e905670d-9db2-4e31-a374-53b5f25126ad",
4 "name": "testingWF",
5 "type": [
6 "automation"
7 ],
8 "tasks": {
9 "workflow_start": {
10 "name": "workflow_start",
11 "groups": [
12 {
13 "_id": "fe1bfeee-61b8-404d-aefc-dc57be92ff02",
14 "provenance": "Local AAA",
15 "name": "pronghorn_admin",
16 "description": "pronghorn_admin",
17 "memberOf": [
18 "group1"
19 ],
20 "assignedRoles": [
21 "engineer"
22 ],
23 "inactive": true,
24 "_meta": {
25 "created": "2019-03-15T19:37:39.112Z",
26 "updated": "2019-03-15T19:37:39.112Z"
27 }
28 }
29 ],
30 "x": 0,
31 "y": 1
32 },
33 "workflow_end": {
34 "name": "workflow_end",
35 "groups": [
36 {
37 "_id": "fe1bfeee-61b8-404d-aefc-dc57be92ff02",
38 "provenance": "Local AAA",
39 "name": "pronghorn_admin",
40 "description": "pronghorn_admin",
41 "memberOf": [
42 "group1"
43 ],
44 "assignedRoles": [
45 "engineer"
46 ],
47 "inactive": true,
48 "_meta": {
49 "created": "2019-03-15T19:37:39.112Z",
50 "updated": "2019-03-15T19:37:39.112Z"
51 }
52 }
53 ],
54 "x": 0,
55 "y": 1
56 },
57 "taskInfo(seeWFEngineexamples)": {},
58 "transitions(seeWFEngineexamples)": {},
59 "font_size": 12,
60 "last_updated": "2019-03-22T14:55:13.074Z",
61 "last_updated_by": "5c8bff0370102c001502d1f7",
62 "groups": [
63 {
64 "_id": "fe1bfeee-61b8-404d-aefc-dc57be92ff02",
65 "provenance": "Local AAA",
66 "name": "pronghorn_admin",
67 "description": "pronghorn_admin",
68 "memberOf": [
69 "group1"
70 ],
71 "assignedRoles": [
72 "engineer"
73 ],
74 "inactive": true,
75 "_meta": {
76 "created": "2019-03-15T19:37:39.112Z",
77 "updated": "2019-03-15T19:37:39.112Z"
78 }
79 }
80 ],
81 "created": "2019-03-22T14:55:13.074Z",
82 "created_by": "5c8bff0370102c001502d1f7"
83 }
84 }
85]
Returns a list of all existing Workflows.
Was this page helpful?
Previous

Import a catalog items

Next
Built with

Authentication

AuthorizationBasic

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

Response

Return all existing Workflows.
_idstring
namestring
typelist of strings
tasksobject

Errors

500
Internal Server Error