Input to the IcdManagement unregisterClient command

MatterSpecification.v13.Core § 9.17.7.3

interface UnregisterClientRequest {
    checkInNodeId: NodeId;
    verificationKey?: Uint8Array;
}

Hierarchy (view full)

Properties

checkInNodeId: NodeId = ...

This field shall provide the registered client node ID to remove from storage.

MatterSpecification.v13.Core § 9.17.7.3.1

verificationKey?: Uint8Array = ...

This field shall provide the verification key associated with the CheckInNodeID to remove from storage. The verification key represents the key already stored on the server. The verification key provided in this field shall be used by the server to guarantee that a client with manage permissions can only remove entries that contain a Key equal to the stored key. The verification key shall be provided for clients with manage permissions. The verification key SHOULD NOT be provided by clients with administrator permissions for the server cluster. The verification key shall be ignored by the server if it is provided by a client with administrator permissions for the server cluster.

MatterSpecification.v13.Core § 9.17.7.3.2