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
        • POSTCreate a group mapping
        • DELDelete a group mapping
        • GETGet an individual group mapping
        • GETList all group mappings
        • PATCHUpdate a group mapping
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceGroup Mappings

List all group mappings

GET
http://localhost:3000/group-mappings
GET
/group-mappings
$curl http://localhost:3000/group-mappings \
> -u "<username>:<password>"
1{
2 "results": {
3 "externalGroup": "string",
4 "provenance": "Okta",
5 "iapGroups": [
6 "string"
7 ]
8 },
9 "total": 1
10}
Returns all group mappings.
Was this page helpful?
Previous

Update a group mapping

Next
Built with

Authentication

AuthorizationBasic

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

Query parameters

multiContainsobjectOptional
multiContains
multiEqualsobjectOptional
multiEquals
multiStartsWithobjectOptional
multiStartsWith
expandstringOptional
Sets the fields to expand
skipintegerOptional>=0Defaults to 0
skip
limitintegerOptional>=0Defaults to 25
limit
sortenumOptionalDefaults to name
sort
Allowed values:
orderenumOptionalDefaults to 1
order
Allowed values:

Response

The group mappings matching the specified query.
resultsobject
This is the schema for an IAP group mapping stored in Mongo
totalinteger>=0
The total number of documents

Errors

500
Internal Server Error