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

removeUserFromStore

Example Query
1mutation ExampleMutation($input: RemoveUserFromStoreInput) {
2 removeUserFromStore(input: $input) {
3 storeId
4 user {
5 id
6 email
7 firstName
8 lastName
9 locale
10 }
11 }
12}
Variables
1{
2 "input": {
3 "storeId": "example",
4 "userId": "example"
5 }
6}
Example response
1{
2 "data": {
3 "removeUserFromStore": {
4 "storeId": "example",
5 "user": {
6 "id": "example",
7 "email": "example",
8 "firstName": "example",
9 "lastName": "example",
10 "locale": "example"
11 }
12 }
13 }
14}
Removes user from a store.
Was this page helpful?
Previous

addUserToStore

Next

createEventSource

Built with

Arguments

inputRemoveUserFromStoreInputRequired

Returns

an optional RemoveUserFromStoreResult
storeIdString
The store from which the user is removed from.
userUser
Removed user.