Skip to content

Latest commit

 

History

History
executable file
·
73 lines (43 loc) · 1.76 KB

File metadata and controls

executable file
·
73 lines (43 loc) · 1.76 KB

CollaboratorToGroup

(collaborator_to_group)

Available Operations

  • add - Add collaborator to collaborators group
  • remove - Remove collaborator from collaborators group

add

Add collaborator to collaborators group

Example Usage

import wingspan
from wingspan.models import operations

s = wingspan.Wingspan()


res = s.collaborator_to_group.add(group_id='transmit', id='calculate')

if res.collaborator_schema is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description
group_id str ✔️ Unique group Id
id str ✔️ Unique identifier

Response

operations.AddCollaboratorToGroupResponse

remove

Remove collaborator from collaborators group

Example Usage

import wingspan
from wingspan.models import operations

s = wingspan.Wingspan()


res = s.collaborator_to_group.remove(group_id='Usability', id='Southwest')

if res.collaborator_schema is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description
group_id str ✔️ Unique group Id
id str ✔️ Unique identifier

Response

operations.RemoveCollaboratorToGroupResponse