Get shield information barrier based on provided ID.
This operation is performed by calling function getShieldInformationBarrierById.
See the endpoint docs at API Reference.
await client.shieldInformationBarriers.getShieldInformationBarrierById(
barrierId,
);
string
GetShieldInformationBarrierByIdOptionalsInputThis function returns a value of type ShieldInformationBarrier.
Returns the shield information barrier object.
Change status of shield information barrier with the specified ID.
This operation is performed by calling function updateShieldInformationBarrierStatus.
See the endpoint docs at API Reference.
await client.shieldInformationBarriers.updateShieldInformationBarrierStatus({
id: barrierId,
status:
'disabled' as UpdateShieldInformationBarrierStatusRequestBodyStatusField,
} satisfies UpdateShieldInformationBarrierStatusRequestBody);
UpdateShieldInformationBarrierStatusRequestBody
UpdateShieldInformationBarrierStatusOptionalsInputThis function returns a value of type ShieldInformationBarrier.
Returns the updated shield information barrier object.
Retrieves a list of shield information barrier objects for the enterprise of JWT.
This operation is performed by calling function getShieldInformationBarriers.
See the endpoint docs at API Reference.
await client.shieldInformationBarriers.getShieldInformationBarriers();
GetShieldInformationBarriersQueryParams
GetShieldInformationBarriersHeadersInput
undefined | CancellationToken
This function returns a value of type ShieldInformationBarriers.
Returns a paginated list of shield information barrier objects, empty list if currently no barrier.
Creates a shield information barrier to separate individuals/groups within the same firm and prevents confidential information passing between them.
This operation is performed by calling function createShieldInformationBarrier.
See the endpoint docs at API Reference.
await client.shieldInformationBarriers.createShieldInformationBarrier({
enterprise: { id: enterpriseId } satisfies EnterpriseBase,
} satisfies CreateShieldInformationBarrierRequestBody);
CreateShieldInformationBarrierRequestBody
CreateShieldInformationBarrierOptionalsInputThis function returns a value of type ShieldInformationBarrier.
Returns a new shield information barrier object.