System and API Information
/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 TopResponse
- application/json
200 Response
General Content Capture System and REST API information.
object
System Information
This object defines basic Capture system information, such as version and build date.
-
apiVersion(optional):
string
The particular version of the REST API. It will resemble something like: v1, v1.1, v1.1.1, etc. depending on the actual version. However, it will always begin with v.
-
buildRevision(optional):
string
The build version of the REST API.
-
buildTimestamp(optional):
string(date-time)
The date/time of the REST API build in ISO-8601 Instant format (
yyyy-MM-dd'T'HH:mm:ss.SSS'Z'
), governed by RFC 3339. -
name(optional):
string
Name of the Content Capture REST API.
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.
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" }