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

Update a group mapping

PATCH
http://localhost:3000/group-mappings/:provenance/:externalGroup
PATCH
/group-mappings/:provenance/:externalGroup
$curl -X PATCH http://localhost:3000/group-mappings/provenance/externalGroup \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "status": "OK",
3 "message": "A sample success message",
4 "data": {
5 "externalGroup": "string",
6 "provenance": "Okta",
7 "iapGroups": [
8 "string"
9 ]
10 }
11}
Updates a group mapping.
Was this page helpful?
Previous

Get status

Next
Built with

Authentication

AuthorizationBasic

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

Path parameters

provenancestringRequired
The provenance for the requested group mapping.
externalGroupstringRequired
The individual group mapping to update.

Request

request body
updatesobjectOptional

Response

The output of the group mapping update.
statusenum
The status of the API request.
Allowed values:
messagestring
Message containing either confirmation of the operation or the reason for the failure of the operation.
dataobject
This is the schema for an IAP group mapping stored in Mongo

Errors

500
Internal Server Error