Cumulocity Web SDK - v1022.4.17
    Preparing search index...

    Class TenantLoginOptionsService

    This service allows to get tenant login options.

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Removes tenant's login option.

      Parameters

      • entityOrId: string | IIdentified

        Tenant's login option's id or tenant's login option object.

      Returns Promise<IResult<null>>

      Returns promise object that is resolved with the IResult of null.

      Example


      const tenantLoginOptionId: string = 'uniqueTenantLoginOptionId';

      (async () => {
      const {data, res} = await tenantLoginOptionsService.delete(tenantLoginOptionId);
      })();