For the complete documentation index, see llms.txt. This page is also available as Markdown.

Remove B2C Connection

Use the below mutation to remove existing B2C connection(s).

mutation (
    $connectionId: ID!
  ) {
    removeB2cConnection (
      connectionId: $connectionId
    ) {
      id
      type
      insertedAt
      updatedAt
      startedAt
      company {
        id
      }
      connectedUser {
        id
      }
    }
  }

Last updated