get-monitoring-denomination-key-validity-withdraw-inconsistency.rst (1678B)
1 .. http:get:: /monitoring/denomination-key-validity-withdraw-inconsistency 2 3 Get a list of denomination key validity withdraw inconsistencies stored by the auditor. 4 The following query parameters are optional, and can be used to customise the response: 5 6 **Request:** 7 8 :query limit: A signed integer, indicating how many elements relative to the offset query parameter should be returned. The default value is -20. 9 :query offset: An unsigned integer, indicating from which row onward to return elements. The default value is INT_MAX. 10 :query return_suppressed: A boolean. If true, returns all eligible rows, otherwise only returns eligible rows that are not suppressed. The default value is false. 11 12 With the default settings, the endpoint returns at most the 20 latest elements that are not suppressed. 13 14 **Response:** 15 16 :http:statuscode:`200 OK`: 17 The auditor responds with a top level array of :ts:type:`DenominationKeyValidityWithdrawInconsistency` objects. If no elements could be found, an empty array is returned 18 19 20 **Details:** 21 22 .. ts:def:: DenominationKeyValidityWithdrawInconsistency 23 24 interface DenominationKeyValidityWithdrawInconsistency { 25 26 // Unique row identifier 27 row_id : Integer; 28 29 // When the withdrawal took place 30 execution_date : Timestamp; 31 32 // Public key of the reserve affected 33 reserve_pub : EddsaPublicKey; 34 35 // Hash of the denomination public key involved in the withdrawal 36 denompub_h : HashCode; 37 38 // True if this diagnostic was suppressed. 39 suppressed : boolean; 40 41 } 42 43 .. note:: 44 45 This endpoint is still experimental. The endpoint will be further developed as needed.