/db2whrest/v1/summary_tables/<table> -X GET
Gets information for a particular summary table available in the system.
The following table shows which roles can access this REST API endpoint:
Data admin | CollectionAdmin | Data user | Admin | Service user |
---|---|---|---|---|
✓ | X | X | Χ | Χ |
Synopsis of the request URL
curl -u <user>:<pass> https://<master_node>/db2whrest/v1/summary_tables/<table> -X GET
Supported request types and response formats
Supported request types:
- GET
- JSON
Examples
- The following example shows how to get information on a particular summary table that is
available in the system.
- Submit the
request:
curl -u <user>:<pass> https://<master_node>/db2whrest/v1/summary_tables/mrcapacity
- The following response is returned. The response data is in JSON format. The data has been
manually reflowed to make it more
readable.
{ "enabled": true, "last_duration": "0:01:10", "last_updated_time": "2019-07-10T21:45:02.462Z", "schedule": { "minute": "*/5" }, "update_running": true, "update_start_time": “2019-07-10T22:00:00.342Z” }
- Submit the
request: