For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
      • Overview
          • MUTaddUserToAccount
          • MUTremoveUserFromAccount
          • MUTcreateCheckout
          • MUTcancelSubscription
          • MUTcreateUserWithPassword
          • MUTcreateUser
          • MUTaddUserToStore
          • MUTremoveUserFromStore
          • MUTcreateEventSource
          • MUTdeleteEventSource
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAccountMutations

removeUserFromAccount

Example Query
1mutation ExampleMutation($input: RemoveUserFromAccountInput) {
2 removeUserFromAccount(input: $input) {
3 accountId
4 userId
5 }
6}
Variables
1{
2 "input": {
3 "email": "example",
4 "userId": "example"
5 }
6}
Example response
1{
2 "data": {
3 "removeUserFromAccount": {
4 "accountId": "example",
5 "userId": "example"
6 }
7 }
8}
Removes a user from an account and all associated entities.
Was this page helpful?
Previous

addUserToAccount

Next

createCheckout

Built with

Arguments

inputRemoveUserFromAccountInputRequired

Returns

an optional RemoveUserFromAccountResult
accountIdString
The ID of the object.
userIdString
The ID of the object.