From 0eb259d5ccfe7d03b0c8f01f82980239b1d0dc98 Mon Sep 17 00:00:00 2001 From: Spencer Witt <3409780+spwitt@users.noreply.github.com> Date: Thu, 16 Oct 2025 08:35:49 -0500 Subject: [PATCH] update domain for tenantId on IdPs ENG-3466 --- pkg/fusionauth/Domain.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/fusionauth/Domain.go b/pkg/fusionauth/Domain.go index 0b6b255..698758a 100644 --- a/pkg/fusionauth/Domain.go +++ b/pkg/fusionauth/Domain.go @@ -910,6 +910,7 @@ type BaseIdentityProvider struct { LinkingStrategy IdentityProviderLinkingStrategy `json:"linkingStrategy,omitempty"` Name string `json:"name,omitempty"` TenantConfiguration map[string]IdentityProviderTenantConfiguration `json:"tenantConfiguration,omitempty"` + TenantId string `json:"tenantId,omitempty"` Type IdentityProviderType `json:"type,omitempty"` } @@ -3262,6 +3263,7 @@ type IdentityProviderSearchCriteria struct { BaseSearchCriteria ApplicationId string `json:"applicationId,omitempty"` Name string `json:"name,omitempty"` + TenantId string `json:"tenantId,omitempty"` Type IdentityProviderType `json:"type,omitempty"` }