kustomer-client
    Preparing search index...

    Function getAuthSettings

    • Get Auth Settings Gets authentication settings for the organization

      Requires org.admin.security privileges

      Type Parameters

      • ThrowOnError extends boolean = true

      Returns RequestResult<
          {
              data: {
                  attributes: {
                      createdAt: string;
                      google: { enabled: boolean };
                      kustomer: { enabled: boolean };
                      modifiedAt: string;
                      saml: {
                          allowUnencryptedAssert: boolean;
                          enabled: boolean;
                          forceAuth: boolean;
                          idpIssuerId: string;
                          idpLoginUrl: string;
                          idpLogoutUrl: string;
                          idpPublicCerts: string[];
                          signRequests: boolean;
                      };
                      updatedAt: string;
                  };
                  id: string;
                  links: { self: string };
                  relationships: {
                      modifiedBy: {
                          data: { id: string; type: string };
                          links: { self: string };
                      };
                      org: { data: { id: string; type: string }; links: { self: string } };
                  };
                  type: string;
              };
          },
          unknown,
          ThrowOnError,
      >