System and API Information

get

/capture/api/v1.1/systemInfo

This is a simple operation that will return Capture system and API information.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

General Content Capture System and REST API information.

Body ()
Root Schema : System Information
Type: object
Title: System Information

This object defines basic Capture system information, such as version and build date.

Show Source

500 Response

Internal Server Error

The server encountered an unexpected condition that prevented it from fulfilling the request. The response will be an Error Detail object.

Back to Top

Examples

Example:

The following example shows how to return Capture system and API information.

curl -X GET -H 'Accept: application/json' 'https://host:port/content/capture/api/v1/systemInfo'

This gets the Content Capture system information.

Response Body

{
   "name": "Content Capture REST API",
   "apiVersion": "v1",
   "buildTimestamp": "2021/08/27T11:08:18.245Z",
   "buildRevision": "capture.master.2591.dc8b52245"
 }
Back to Top