Netskope PatchGroup

Netskope PatchGroup

Certified

Add or remove a member from a Netskope SCIM group

Patches a group in Netskope Security Cloud via SCIM 2.0 to add or remove a member by email.

yaml
type: io.kestra.plugin.netskope.scim.PatchGroup
yaml
id: patch_netskope_group
namespace: io.kestra.security
tasks:
  - id: add_member
    type: io.kestra.plugin.netskope.scim.PatchGroup
    baseUrl: "https://{{ secret('NETSKOPE_TENANT') }}.goskope.com"
    scimToken: "{{ secret('NETSKOPE_SCIM_TOKEN') }}"
    groupId: "{{ inputs.group_id }}"
    operation: ADD
    memberEmail: "user@example.com"
Properties

The base URL of the Netskope tenant

The SCIM group ID to update

The email address of the member to add or remove

The operation to perform on group membership

Must be 'ADD' or 'REMOVE'

The SCIM Bearer token for authentication

Reference (ref) of the pluginDefaults to apply to this task.

The ID of the updated group

The operation that was performed (ADD or REMOVE)