Skip to main content

Update remote trust entity

Updates metadata of a trust entity.

This method makes an HTTP call to the publisher.

See the Procivis Trust Registry guide for more.

Function

updateRemoteTrustEntity(request: UpdateRemoteTrustEntityRequest): Promise<void>

Parameters

Pass the id of the DID of the trust entity along with the metadata to be updated.

export interface UpdateRemoteTrustEntityRequest {
didId: string;
action?: TrustEntityUpdateActionEnum
name?: string;
logo?: string | null;
website?: string | null;
termsUrl?: string | null;
privacyUrl?: string | null;
role?: TrustEntityRoleEnum;
}