This interface defines the structure of the request body used when adding a new member to an organization.
export interface AddOrganizationMemberRequest {
    user_id: string;
    role_id: string;
}

Properties

  • user_id (string): The ID of the user to add to the organization.
  • role_id (string): The ID of the role to assign to the user within the organization.