You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
user_id is email id of user who are invited inside the organization. If user is not registered on the platform, it will be notified
group_ids
List[str]
list of group ids to which user needs to be added as a member.
[optional]
role_ids
List[str]
list of role ids to which user needs to be added as a member. Roles are binded at organization level by default.
[optional]
Example
fromfrontier_api.models.frontier_service_create_organization_invitation_requestimportFrontierServiceCreateOrganizationInvitationRequest# TODO update the JSON string belowjson="{}"# create an instance of FrontierServiceCreateOrganizationInvitationRequest from a JSON stringfrontier_service_create_organization_invitation_request_instance=FrontierServiceCreateOrganizationInvitationRequest.from_json(json)
# print the JSON string representation of the objectprintFrontierServiceCreateOrganizationInvitationRequest.to_json()
# convert the object into a dictfrontier_service_create_organization_invitation_request_dict=frontier_service_create_organization_invitation_request_instance.to_dict()
# create an instance of FrontierServiceCreateOrganizationInvitationRequest from a dictfrontier_service_create_organization_invitation_request_form_dict=frontier_service_create_organization_invitation_request.from_dict(frontier_service_create_organization_invitation_request_dict)