tally.removeOrganizationUser removes a user from a Tally organization.
Example
automations/tally-remove-organization-user.automation.ts
Inputs
organizationId and userId are required.
Pass account to select a named Tally connection.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Removes a user from a Tally organization.
tally.removeOrganizationUser removes a user from a Tally organization.
import { automation, onHttpRequest } from "automate.ax"
import { tally } from "automate.ax/tally"
export default automation("Remove organization user", () => {
onHttpRequest({ scope: "automation" })
tally.removeOrganizationUser({
organizationId: "org-id",
userId: "user-id",
})
})
organizationId and userId are required.
Pass account to select a named Tally connection.