Can we import our managed SSO customer using Azure...
# talk-kratos
e
Can we import our managed SSO customer using Azure AD of our app to Ory without requiring them to login? And what is the "subject" field should be? And how to retrieve the field to ingest that value? Social sign-in connections(from docs) When importing social sign-in connections, the `provider` field is the social sign-in provider ID you set in your social sign-in configuration. The
subject
ID must be the ID of the user on the given platform. Usually, this is the
sub
claim of the OpenID Connect ID Token provider such as Google.
Copy code
{
  "schema_id": "<preset://email>",
  "traits": {
    "email": "<mailto:docs-oidc@example.org|docs-oidc@example.org>"
  },
  "credentials": {
    "oidc": {
      "config": {
        "providers": [
          {
            "provider": "github",
            "subject": "12345"
          },
          {
            "provider": "google",
            "subject": "12345"
          }
        ]
      }
    }
  }
}