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);
  })();
						Response wrapped in IResult
Response wrapped in IResult
Example
   const identity: IExternalIdentity = {
     type: 'type',
     externalId: '1'
   };
   (async () => {
     const {data, res} = await identityService.detail(identity);
  })();
						Response wrapped in IResultList
Generated using TypeDoc