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: ["[email protected]", "[email protected]"]
}
) {
organizationUuid
userUuid
email
allFarms
createdDate
updatedDate
}
}
Last updated
Was this helpful?