PUT api/v1/infrastructure/node/{nodeId}/revoke
Mark as revoked public key for node
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| nodeId | globally unique identifier |
Required |
Body Parameters
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.NodePublicKeyVo| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| NodeId | unsigned integer |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| Subject | string |
None. |
|
| PublicKey | string |
None. |
|
| Thumbprint | string |
None. |
|
| Validated | boolean |
None. |
|
| GeneratedTime | date |
None. |
|
| ValidatedTime | date |
None. |
|
| RevokedTime | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "f635c6d6-4226-4a95-9c29-87bcbd42124e",
"NodeId": 2,
"TenantId": "c5e929f5-ef97-4905-9e50-dd57d4cea44a",
"Subject": "sample string 3",
"PublicKey": "sample string 4",
"Thumbprint": "sample string 5",
"Validated": true,
"GeneratedTime": "2025-11-20T01:48:28Z",
"ValidatedTime": "2025-11-20T01:48:28Z",
"RevokedTime": "2025-11-20T01:48:28Z"
}
application/xml, text/xml
Sample:
<NodePublicKeyVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/platform/commondomain/v1/nodepublickey/"> <GeneratedTime>2025-11-20T01:48:28.5530705+02:00</GeneratedTime> <Id>f635c6d6-4226-4a95-9c29-87bcbd42124e</Id> <NodeId>2</NodeId> <PublicKey>sample string 4</PublicKey> <RevokedTime>2025-11-20T01:48:28.5530705+02:00</RevokedTime> <Subject>sample string 3</Subject> <TenantId>c5e929f5-ef97-4905-9e50-dd57d4cea44a</TenantId> <Thumbprint>sample string 5</Thumbprint> <Validated>true</Validated> <ValidatedTime>2025-11-20T01:48:28.5530705+02:00</ValidatedTime> </NodePublicKeyVo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.Boolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Sucess | boolean |
None. |
|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| Data | boolean |
None. |
|
| Links | Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink |
None. |
Response Formats
application/json, text/json
Sample:
{
"Sucess": true,
"ResponseCode": 2,
"ResponseMessage": "sample string 3",
"Data": true,
"Links": [
{
"Rel": "sample string 1",
"HRef": "sample string 2"
},
{
"Rel": "sample string 1",
"HRef": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RestApiResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
<Data>true</Data>
<Links>
<RestApiLink>
<HRef>sample string 2</HRef>
<Rel>sample string 1</Rel>
</RestApiLink>
<RestApiLink>
<HRef>sample string 2</HRef>
<Rel>sample string 1</Rel>
</RestApiLink>
</Links>
<ResponseCode>2</ResponseCode>
<ResponseMessage>sample string 3</ResponseMessage>
<Sucess>true</Sucess>
</RestApiResultOfboolean>