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

Get multiple instance groups

GET
http://localhost:3000/lifecycle-manager/resources/:modelIdentifier/groups
GET
/lifecycle-manager/resources/:modelIdentifier/groups
$curl http://localhost:3000/lifecycle-manager/resources/myCoolDocumentName/groups \
> -u "<username>:<password>"
1{
2 "data": [
3 {
4 "createdBy": {
5 "firstname": "string",
6 "provenance": "string",
7 "username": "string",
8 "_id": "string"
9 },
10 "created": "2024-01-15T09:30:00Z",
11 "lastUpdatedBy": {
12 "firstname": "string",
13 "provenance": "string",
14 "username": "string",
15 "_id": "string"
16 },
17 "lastUpdated": "2024-01-15T09:30:00Z",
18 "_id": "string",
19 "lastAction": {
20 "_id": null,
21 "executionId": "string",
22 "name": "Create",
23 "type": "import",
24 "status": "running"
25 }
26 }
27 ],
28 "metadata": {
29 "skip": 1,
30 "limit": 1,
31 "total": 1,
32 "nextPageSkip": 1,
33 "previousPageSkip": 1,
34 "currentPageSize": 1
35 },
36 "message": "Successfully created the requested item"
37}
Returns multiple instance groups.
Was this page helpful?
Previous

Get resource instance

Next
Built with

Authentication

AuthorizationBasic

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

Path parameters

modelIdentifierstringRequired
modelIdentifier

Response

response
datalist of objects
metadataobject
Properties describing search result pagination

Errors

500
Internal Server Error