Skip to main content
PATCH
/
scim
/
v2
/
Groups
Update a group
curl --request PATCH \
  --url https://paradigm.lighton.ai/scim/v2/Groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:PatchOp"
  ],
  "Operations": [
    {
      "op": "add",
      "path": "<string>",
      "value": "<string>"
    }
  ]
}
'
{
  "id": "<string>",
  "externalId": "<string>",
  "meta": {
    "created": "2023-11-07T05:31:56Z",
    "lastModified": "2023-11-07T05:31:56Z",
    "resourceType": "Group"
  },
  "displayName": "<string>",
  "members": [
    {
      "value": "<string>",
      "display": "<string>"
    }
  ],
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:Group"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

schemas
string[]
Operations
object[]

Response

Modified group

id
string
required
externalId
string
required
meta
object
required
displayName
string
required
members
object[]
required
schemas
string[]