For TypeScript, the GraphQL SDK gives you a fully typed client for these operations.
customer:editcustomerTenantMembership:createcustomerTenantMembership:delete
Mutation
Variables
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Replace all of a customer’s tenants at once, rather than adding or removing individually.
customer:editcustomerTenantMembership:createcustomerTenantMembership:deletemutation setCustomerTenants($input: SetCustomerTenantsInput!) {
setCustomerTenants(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}
{
"input": {
"customerIdentifier": {
"emailAddress": "jane@aol.com"
},
"tenantIdentifiers": [
{
"externalId": "team_123"
},
{
"externalId": "team_456"
}
]
}
}
Was this page helpful?
