Update Specific Group Details for the Host Company or Partner Organization

patch

/rest/v16/companies/{companyLoginName}/groups/{groupVarName}

This endpoint updates an existing group but does not require sending the entire body with the request.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : Group Details
Type: object
Title: Group Details
Show Source
Nested Schema : Segments
Type: object
Title: Segments
Access Segments for the group.
Show Source
Nested Schema : Status
Type: object
Title: Status
Preferred status format of the group.
Show Source
Nested Schema : Type
Type: object
Title: Type
Preferred type format of the group.
Show Source
Nested Schema : Selected Users
Type: object
Title: Selected Users
The users list part of the group.
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Segment Details
Type: object
Title: Segment Details
Show Source
  • Title: Checked
    Is segment enabled.
  • Title: Icon
    Path of the icon image file. This field is only applicable if uiMetadata is set as true.
  • Sub Segments
    Title: Sub Segments
    Sub access segments for the segment.
  • Title: Status
    Specifies if the segment is enabled, partially selected or unselected. Possible values are 0[UNCHECKED], 1[PARTIALCHECKED],2[CHECKED]. This field is only applicable if uiMetadata is set as true.
  • Title: VariableName
    Segment variable name.
Nested Schema : Sub Segments
Type: object
Title: Sub Segments
Sub access segments for the segment.
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Sub Segment Details
Type: object
Title: Sub Segment Details
Show Source
  • Title: Checked
    Is segment enabled.
  • Title: Icon
    Path of the icon image file. This field is only applicable if uiMetadata is set as true.
  • Title: Status
    Specifies if the segment is enabled, partially selected or unselected. Possible values are 0[UNCHECKED], 1[PARTIALCHECKED],2[CHECKED]. This field is only applicable if uiMetadata is set as true.
  • Title: title
    Segment label.
  • Title: VariableName
    Segment variable name.
Nested Schema : items
Type: array
Show Source
Nested Schema : User Details
Type: object
Title: User Details
Show Source
Back to Top

Response

Supported Media Types

Default Response

Group details.
Body ()
Root Schema : Group
Type: object
Title: Group
User group information
Show Source
Back to Top

Examples

The following example updates specific group details for a host company or partner organization with that specified in the web services request by submitting a PATCH request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X POST -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Content-type: application/json" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/companies/visionServices/groups/midwestTestGroup

Request Body Sample

{
  "description": "Midwest Test Project",
  "status": {
    "value": 0
  },
  "users": [{
      "login": "ljones"
    }, {
      "login": "msmith"
    }, {
      "login": "jsanchez"
    }
  ],
  "segments": {
    "items": [{
        "variableName": "_developerTools",
        "segments": {
          "items": [{
              "variableName": "_dataTables",
              "checked": false,
              "segments": {
                "items": [{
                    "variableName": "aBOTables",
                    "checked": false
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}

Response Body Sample

{
  "label": "Midwest Test Group",
  "variableName": "midwestTestGroup",
  "description": "Midwest Test Project",
  "company": {
    "value": "_host",
    "displayValue": "visionServices"
  },
  "type": {
    "value": 1,
    "displayValue": "Administrator"
  },
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/companies/visionServices/groups/a100kparts"
    }, {
      "rel": "users",
      "href": "https://sitename.oracle.com/rest/v16/companies/visionServices/groups/a100kparts/users"
    }, {
      "name": "segments",
      "rel": "child",
      "href": "https://sitename.oracle.com/rest/v16/companies/visionServices/groups/a100kparts/users"
    }
  ]
}
Back to Top