POST 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": "9d2a4de5-444e-4bf9-a513-55efbce40e3b",
"NodeId": 2,
"TenantId": "6edb0c7c-f7b3-4a99-a70b-2c281f9aa149",
"Subject": "sample string 3",
"PublicKey": "sample string 4",
"Thumbprint": "sample string 5",
"Validated": true,
"GeneratedTime": "2025-11-19T07:07:24Z",
"ValidatedTime": "2025-11-19T07:07:24Z",
"RevokedTime": "2025-11-19T07:07:24Z"
}
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-19T07:07:24.8170326+02:00</GeneratedTime> <Id>9d2a4de5-444e-4bf9-a513-55efbce40e3b</Id> <NodeId>2</NodeId> <PublicKey>sample string 4</PublicKey> <RevokedTime>2025-11-19T07:07:24.8170326+02:00</RevokedTime> <Subject>sample string 3</Subject> <TenantId>6edb0c7c-f7b3-4a99-a70b-2c281f9aa149</TenantId> <Thumbprint>sample string 5</Thumbprint> <Validated>true</Validated> <ValidatedTime>2025-11-19T07:07:24.8170326+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>