Get Release Build Information

get

/api/v1/configuration/release/buildInfo

Get the release build information.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : ReleaseBuildInfo
Type: object
Release Build Information
Show Source

400 Response

Bad Request
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

401 Response

Unauthorized
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

500 Response

Internal Server 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 build date and the version of the Blockchain platform configuration.

The following example shows how to generate the release information report by submitting a GET request on the REST resource using cURL.

curl -X GET \
  http://<hostname>:<port>/api/v1/configuration/release/buildInfo

For example,

curl -X GET \
  http://localhost:17070/api/v1/configuration/release/buildInfo

Example of the Response Body

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

{
    "build.date": "2019-08-06T02:42:19Z",
    "version": "19.3.2-54"
}
Back to Top