
Netskope PatchGroup
CertifiedAdd or remove a member from a Netskope SCIM group
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.PatchGroupExamples
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
baseUrl *Requiredstring
The base URL of the Netskope tenant
groupId *Requiredstring
The SCIM group ID to update
memberEmail *Requiredstring
The email address of the member to add or remove
operation *Requiredstring
The operation to perform on group membership
Must be 'ADD' or 'REMOVE'
scimToken *Requiredstring
The SCIM Bearer token for authentication
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
groupId string
The ID of the updated group
operation string
The operation that was performed (ADD or REMOVE)