Skip to content
Fabian Lupa edited this page Jan 19, 2019 · 3 revisions
/sap/bc/zcilib/...

General parameters

Parameter Type Obligatory Description
format string json or xml, if it is not set HTTP header fields Content-Type and Accept are used, if these are also not set format defaults to json

ATC Check Run

Get

GET /atc/run/:id

Retrieves the header information and findings of an ATC Check Run. If the run is not finished the findings will be empty. :id identifies a run by its display id (SATC_D_AC_DISPLAY_ID, table SATC_AC_RESULTH).

Response

{
  "id" : "ABVdVO8HHtmGg8rqA10S+A==",
  "title" : "NPL: Monday, CW03 2019",
  "check_profile" : "DEFAULT",
  "count_prio1" : 2,
  "count_prio2" : 2,
  "count_prio3" : 129,
  "count_prio4" : 0,
  "count_failures" : 0,
  "finished" : "X",
  "timestamp" : 20190114170418,
  "findings" : [
    {
      "object_type" : "CLAS",
      "object_name" : "ZCL_CILIB_API_HTTP_HANDLER",
      "module_id" : "+GB81AoPizC9+FkCBbMG6A==",
      "module_msg_key" : "1700",
      "checksum" : -1005991346,
      "priority" : 3,
      "package" : "$CILIB",
      "timestamp" : 20190114170402,
      "error_object_type" : "",
      "error_object_name" : ""
    },
    {
      "object_type" : "CLAS",
      "object_name" : "ZCL_CILIB_API_RESOURCE_BASE",
      "module_id" : "+GB81AoPizC9+FkCBbMG6A==",
      "module_msg_key" : "1713",
      "checksum" : -1321409121,
      "priority" : 3,
      "package" : "$CILIB",
      "timestamp" : 20190114170402,
      "error_object_type" : "",
      "error_object_name" : ""
    }
  ]
}

Post

POST /atc/run

Parameters

Parameter Type Obligatory Description
wait boolean true or false, waits for the scheduled ATC check run to finish before returning the response, defaults to false

Response

Clone this wiki locally