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
        • POSTCancel an action execution
        • POSTCreate a new instance group
        • POSTCreate a new resource model
        • DELDelete a resource model
        • DELDelete an instance group
        • GETExport a resource instance
        • GETExport a resource model
        • GETGet a resource model based on ID
        • GETGet action execution record
        • GETGet instance group
        • GETGet multiple instance groups
        • GETGet resource instance
        • POSTImport a resource model
        • POSTImport an instance into a resource
        • POSTPerforms edits to a resource model
        • POSTRun a resource action
        • POSTRun a resource action against multiple instances
        • GETSearch resource action history documents
        • GETSearch resource instances
        • GETSearch resource models
        • PATCHUpdate a instance group
        • PUTUpdate a resource model
        • PUTUpdate resource instance
        • POSTValidate the actions defined on a resource model
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceLifecycle Manager

Search resource models

GET
http://localhost:3000/lifecycle-manager/resources
GET
/lifecycle-manager/resources
$curl http://localhost:3000/lifecycle-manager/resources \
> -u "<username>:<password>"
1{
2 "data": [
3 {
4 "name": "VLAN Service",
5 "description": "This resource model represents something we use on a day-to-day basis.",
6 "schema": null,
7 "created": null,
8 "createdBy": null,
9 "lastUpdated": null,
10 "lastUpdatedBy": null,
11 "actions": [
12 {
13 "_id": null,
14 "name": "Create",
15 "type": "create",
16 "preWorkflowJst": "62a1f3d2ebedfc54e6e0065c",
17 "postWorkflowJst": "62a1f3d2ebedfc54e6e0065c",
18 "description": "Creates a new VLAN service instance",
19 "inputSchema": {},
20 "outputSchema": {},
21 "workflow": null
22 }
23 ]
24 }
25 ],
26 "metadata": {
27 "skip": 1,
28 "limit": 1,
29 "total": 1,
30 "nextPageSkip": 1,
31 "previousPageSkip": 1,
32 "currentPageSize": 1
33 },
34 "message": "Successfully created the requested item"
35}
Searches resource models.
Was this page helpful?
Previous

Update a instance group

Next
Built with

Authentication

AuthorizationBasic

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

Response

response
datalist of objects
metadataobject
Properties describing search result pagination

Errors

500
Internal Server Error