POST api/v1/infrastructure/node/{nodeId}/validate
Mark as validated 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.NodePublicKeyVoName | 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": "29771f68-1b77-4c12-9b19-f5c975136d52", "NodeId": 2, "TenantId": "ec4804db-e272-49e0-9903-abe766ea94cb", "Subject": "sample string 3", "PublicKey": "sample string 4", "Thumbprint": "sample string 5", "Validated": true, "GeneratedTime": "2025-08-05T08:49:30Z", "ValidatedTime": "2025-08-05T08:49:30Z", "RevokedTime": "2025-08-05T08:49:30Z" }
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-08-05T08:49:30.4321158+02:00</GeneratedTime> <Id>29771f68-1b77-4c12-9b19-f5c975136d52</Id> <NodeId>2</NodeId> <PublicKey>sample string 4</PublicKey> <RevokedTime>2025-08-05T08:49:30.4321158+02:00</RevokedTime> <Subject>sample string 3</Subject> <TenantId>ec4804db-e272-49e0-9903-abe766ea94cb</TenantId> <Thumbprint>sample string 5</Thumbprint> <Validated>true</Validated> <ValidatedTime>2025-08-05T08:49:30.4321158+02:00</ValidatedTime> </NodePublicKeyVo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.BooleanName | 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>