64. Mutation: Add Users to Organization
Mutation to add users to the "Organization".
The mutation can be executed only from the account belonging to the Organization-group.
mutation AddUsersToOrganizationSample {
addUsersToOrganization(
input: {
organizationUuid: "organization_uuid",
emails: ["user1@gmail.com", "user2@gmail.com"]
}
) {
organizationUuid
userUuid
email
allFarms
createdDate
updatedDate
}
}
Last updated
Was this helpful?