PUT 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": "004c9101-c09f-494e-9309-ad35d416f66a", "NodeId": 2, "TenantId": "e996f7e5-563f-47e6-88f8-1ba3a3667adc", "Subject": "sample string 3", "PublicKey": "sample string 4", "Thumbprint": "sample string 5", "Validated": true, "GeneratedTime": "2025-04-17T20:02:58Z", "ValidatedTime": "2025-04-17T20:02:58Z", "RevokedTime": "2025-04-17T20:02:58Z" }
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-04-17T20:02:58.4767027+02:00</GeneratedTime> <Id>004c9101-c09f-494e-9309-ad35d416f66a</Id> <NodeId>2</NodeId> <PublicKey>sample string 4</PublicKey> <RevokedTime>2025-04-17T20:02:58.4767027+02:00</RevokedTime> <Subject>sample string 3</Subject> <TenantId>e996f7e5-563f-47e6-88f8-1ba3a3667adc</TenantId> <Thumbprint>sample string 5</Thumbprint> <Validated>true</Validated> <ValidatedTime>2025-04-17T20:02:58.4767027+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>