APIs.io Engineering Platform · Example Payload

Apis Io Engineering Platform Enterprise Adminupdate Attribute For Enterprise Group Example

APIs.ioEngineeringPlatform

Apis Io Engineering Platform Enterprise Adminupdate Attribute For Enterprise Group Example is an example object payload from APIs.io Engineering Platform, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "enterprise-admin/update-attribute-for-enterprise-group",
  "method": "PATCH",
  "path": "/scim/v2/enterprises/{enterprise}/Groups/{scim_group_id}",
  "summary": "APIs.io Engineering Platform Update an attribute for a SCIM enterprise group",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "updateGroup",
      "example": {
        "schemas": [
          "urn:ietf:params:scim:api:messages:2.0:PatchOp"
        ],
        "Operations": [
          {
            "op": "replace",
            "path": "displayName",
            "value": "Employees"
          }
        ]
      }
    },
    {
      "contentType": "application/json",
      "name": "addMembers",
      "example": {
        "schemas": [
          "urn:ietf:params:scim:api:messages:2.0:PatchOp"
        ],
        "Operations": [
          {
            "op": "add",
            "path": "members",
            "value": [
              {
                "value": "879db59-3bdf-4490-ad68-ab880a2694745"
              },
              {
                "value": "0db508eb-91e2-46e4-809c-30dcbda0c685"
              }
            ]
          }
        ]
      }
    }
  ],
  "responseExamples": []
}