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 user groups

GET
http://localhost:3000/service_catalog/getGroups
GET
/service_catalog/getGroups
$curl http://localhost:3000/service_catalog/getGroups \
> -u "<username>:<password>"
1[
2 {
3 "_id": "fe1bfeee-61b8-404d-aefc-dc57be92ff02",
4 "provenance": "Local AAA",
5 "name": "pronghorn_admin",
6 "description": "pronghorn_admin",
7 "memberOf": [
8 "group1"
9 ],
10 "assignedRoles": [
11 "engineer"
12 ],
13 "inactive": true,
14 "_meta": {
15 "created": "2019-03-15T19:37:39.112Z",
16 "updated": "2019-03-15T19:37:39.112Z"
17 }
18 }
19]
Lists of user groups.
Was this page helpful?
Previous

Get workflows

Next
Built with

Authentication

AuthorizationBasic

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

Response

List of user groups.
_idstring
provenancestring
namestring
descriptionstring
memberOflist of strings
assignedRoleslist of strings
inactiveboolean
_metaobject

Errors

500
Internal Server Error