Options
All
  • Public
  • Public/Protected
  • All
Menu

Class IdentityService

Hierarchy

  • IdentityService

Index

Constructors

Methods

Constructors

constructor

Methods

create

  • Parameters

    Returns Promise<IResult<IExternalIdentity>>

    Response wrapped in IResult

    Example

      const linkedManagedObjectId = '123';
      const identity: IExternalIdentity = {
         type: 'type',
         externalId: '1',
         managedObject: {
           id: linkedManagedObjectId
         }
       };
    
       (async () => {
         const {data, res} = await identityService.create(identity);
      })();
    

delete

detail

  • Parameters

    Returns Promise<IResult<IExternalIdentity>>

    Response wrapped in IResult

    Example

    
       const identity: IExternalIdentity = {
         type: 'type',
         externalId: '1'
       };
    
       (async () => {
         const {data, res} = await identityService.detail(identity);
      })();
    

list

Generated using TypeDoc