- POST /management/denominations/$H_DENOM_PUB/revoke#
Revoke denomination key, preventing further use by the exchange. Only to be used by the exchange’s offline key management team. Not useful for anyone else.
Request:
The request body must be a DenomRevocationSignature object.
Response:
- 204 No content:
The request was successfully processed.
- 403 Forbidden:
The provided signature is invalid. Returned with an error code of
TALER_EC_EXCHANGE_MANAGEMENT_DENOMINATION_REVOKE_SIGNATURE_INVALID.- 500 Internal Server Error:
The server experienced an internal error. This response comes with a standard ErrorDetail response with a code of
TALER_EC_GENERIC_DB_STORE_FAILED.
Details:
interface DenomRevocationSignature { // Signature by the exchange master key over a // TALER_MasterDenominationKeyRevocationPS. // Must have purpose TALER_SIGNATURE_MASTER_DENOMINATION_KEY_REVOKED. master_sig: EddsaSignature; }