List Blockchain Platform Patch Targets

get

/api/v1/blockchainPlatforms/patches/{patchId}/targets

List Blockchain Platform patch targets.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : PatchTargetInfo
Type: object
Show Source

400 Response

Bad Request

401 Response

Not authorized

404 Response

Invalid parameters

500 Response

Service unavailable

Default Response

Unknown Error
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source
Nested Schema : errors
Type: array
list of errors
Show Source
Nested Schema : warnings
Type: array
list of warnings
Show Source
Back to Top

Examples

This endpoint is used to get the list of Blockchain Platform patch target instances.

The following example shows how to query and get the list of Blockchain Platform patch targets instances by submitting a GET request on the REST resource using cURL:

curl -X GET http://<hostname>:<port>/api/v1/blockchainPlatforms/patches/obp-patch-19-3-3/targets 
-H 'Authorization: Basic amFzc2l0ZXN0OndlbGNvbWUx

Example of the Response Body

The following example shows the contents of the response body in JSON format:

[ {
  "instanceId" : "56cda494-e776-416e-a2fa-c7e2a95955b8",
  "instanceName" : "JasFounder",
  "version" : "19.3.2",
  "status" : "Healthy",
  "timeCreated" : "2019-08-30 10:11:26.169"
} ]
Back to Top