GET api/v1/infrastructure/node/publickeylist

Get public keys

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.NodePublicKeyVo
NameDescriptionTypeAdditional 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.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "9d5286e7-b1f5-40ef-96ba-fe2eaa333f15",
    "NodeId": 2,
    "TenantId": "feae15c2-05f8-4e5f-97ea-b1ddecbc0d6c",
    "Subject": "sample string 3",
    "PublicKey": "sample string 4",
    "Thumbprint": "sample string 5",
    "Validated": true,
    "GeneratedTime": "2025-04-23T22:46:03Z",
    "ValidatedTime": "2025-04-23T22:46:03Z",
    "RevokedTime": "2025-04-23T22:46:03Z"
  },
  {
    "Id": "9d5286e7-b1f5-40ef-96ba-fe2eaa333f15",
    "NodeId": 2,
    "TenantId": "feae15c2-05f8-4e5f-97ea-b1ddecbc0d6c",
    "Subject": "sample string 3",
    "PublicKey": "sample string 4",
    "Thumbprint": "sample string 5",
    "Validated": true,
    "GeneratedTime": "2025-04-23T22:46:03Z",
    "ValidatedTime": "2025-04-23T22:46:03Z",
    "RevokedTime": "2025-04-23T22:46:03Z"
  }
]

application/xml, text/xml

Sample:
<ArrayOfNodePublicKeyVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/platform/commondomain/v1/nodepublickey/">
  <NodePublicKeyVo>
    <GeneratedTime>2025-04-23T22:46:03.7820431+02:00</GeneratedTime>
    <Id>9d5286e7-b1f5-40ef-96ba-fe2eaa333f15</Id>
    <NodeId>2</NodeId>
    <PublicKey>sample string 4</PublicKey>
    <RevokedTime>2025-04-23T22:46:03.7820431+02:00</RevokedTime>
    <Subject>sample string 3</Subject>
    <TenantId>feae15c2-05f8-4e5f-97ea-b1ddecbc0d6c</TenantId>
    <Thumbprint>sample string 5</Thumbprint>
    <Validated>true</Validated>
    <ValidatedTime>2025-04-23T22:46:03.7820431+02:00</ValidatedTime>
  </NodePublicKeyVo>
  <NodePublicKeyVo>
    <GeneratedTime>2025-04-23T22:46:03.7820431+02:00</GeneratedTime>
    <Id>9d5286e7-b1f5-40ef-96ba-fe2eaa333f15</Id>
    <NodeId>2</NodeId>
    <PublicKey>sample string 4</PublicKey>
    <RevokedTime>2025-04-23T22:46:03.7820431+02:00</RevokedTime>
    <Subject>sample string 3</Subject>
    <TenantId>feae15c2-05f8-4e5f-97ea-b1ddecbc0d6c</TenantId>
    <Thumbprint>sample string 5</Thumbprint>
    <Validated>true</Validated>
    <ValidatedTime>2025-04-23T22:46:03.7820431+02:00</ValidatedTime>
  </NodePublicKeyVo>
</ArrayOfNodePublicKeyVo>