gana

GNUnet Assigned Numbers Authority
Log | Files | Refs | README | LICENSE

registry.rec (149235B)


      1 # -*- mode: rec -*-
      2 #
      3 # Registry for HTTP status codes
      4 #
      5 %rec: TalerErrorCode
      6 %key: Value
      7 %singular: Value
      8 %typedef: ValueRange_t range 0 9999
      9 %typedef: ValueRange_t regexp /^[0123456789]?[0123456789]?[0123456789]?[0123456789]?$/
     10 %constraint: ( Value < 100 ) || ( Value > 999 )
     11 %type: Value ValueRange_t
     12 %mandatory: Value
     13 %typedef: Description_t regexp |^[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-][abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_\(\)\.,;!"':#`\/ -]*$|
     14 %type: Description Description_t
     15 %mandatory: Description
     16 %typedef: Name_t regexp /^[ABCDEFGHIJKLMNOPQRSTUVWXYZ_][ABCDEFGHIJKLMNOPQRSTUVWXYZ_0123456789]*$/
     17 %type: Name Name_t
     18 %unique: Name
     19 %mandatory: Name
     20 %singular: Name
     21 # A status of 0 means not an HTTP status (i.e. created client-side)
     22 %type: HttpStatus rec HttpStatusCode
     23 %mandatory: HttpStatus
     24 %sort: Value
     25 
     26 # 0 - 99: Reserved for GENERIC error codes
     27 
     28 Value: 0
     29 Name: NONE
     30 Description: Special code to indicate success (no error).
     31 HttpStatus: 0
     32 
     33 # We could not get the error code.
     34 Value: 1
     35 Name: INVALID
     36 Description: An error response did not include an error code in the format expected by the client. Most likely, the server does not speak the GNU Taler protocol. Check the URL and/or the network connection to the server.
     37 HttpStatus: 0
     38 
     39 Value: 2
     40 Name: GENERIC_CLIENT_INTERNAL_ERROR
     41 Description: An internal failure occurred on the client side. Details should be in the local logs. Check whether the latest available version is in use or file a report with the developers.
     42 HttpStatus: 0
     43 
     44 Value: 3
     45 Name: GENERIC_CLIENT_UNSUPPORTED_PROTOCOL_VERSION
     46 Description: The client does not support the protocol version advertised by the server.
     47 HttpStatus: 0
     48 
     49 # Fundamental problems detected client-side (10-19)
     50 
     51 Value: 10
     52 Name: GENERIC_INVALID_RESPONSE
     53 Description: The response received from the server was not in the expected format. Most likely, the server does not speak the GNU Taler protocol. Check the URL and the network connection to the server.
     54 HttpStatus: 0
     55 
     56 Value: 11
     57 Name: GENERIC_TIMEOUT
     58 Description: The operation timed out. Trying again might help. Check the network connection.
     59 HttpStatus: 0
     60 
     61 Value: 12
     62 Name: GENERIC_VERSION_MALFORMED
     63 Description: The protocol version given by the server does not follow the required format. Most likely, the server does not speak the GNU Taler protocol. Check the URL and/or the network connection to the server.
     64 HttpStatus: 0
     65 
     66 Value: 13
     67 Name: GENERIC_REPLY_MALFORMED
     68 Description: The service returned a response in the correct data format, but its content did not satisfy the protocol. File a bug report.
     69 HttpStatus: 0
     70 
     71 Value: 14
     72 Name: GENERIC_CONFIGURATION_INVALID
     73 Description: There is an error in the client-side configuration, for example an option is set to an invalid value. Check the logs and fix the local configuration.
     74 HttpStatus: 0
     75 
     76 Value: 15
     77 Name: GENERIC_UNEXPECTED_REQUEST_ERROR
     78 Description: The client made a request to a service, but received an error response it does not know how to handle. Please file a bug report.
     79 HttpStatus: 0
     80 
     81 Value: 16
     82 Name: GENERIC_TOKEN_PERMISSION_INSUFFICIENT
     83 Description: The token used by the client to authorize the request does not grant the required permissions for the request. Check the requirements and obtain a suitable authorization token to proceed.
     84 HttpStatus: 403
     85 
     86 # Fundamental client-side protocol problems (20-29)
     87 # (fundamental: cannot be helped, client is very broken)
     88 
     89 Value: 20
     90 Name: GENERIC_METHOD_INVALID
     91 Description: The HTTP method used is invalid for this endpoint. This is likely a bug in the client implementation. Check whether the latest available version is in use or file a report with the developers.
     92 HttpStatus: 405
     93 
     94 Value: 21
     95 Name: GENERIC_ENDPOINT_UNKNOWN
     96 Description: There is no endpoint defined for the URL provided by the client. Check whether the URL is correct or file a report with the client software developers.
     97 HttpStatus: 404
     98 
     99 Value: 22
    100 Name: GENERIC_JSON_INVALID
    101 Description: The JSON in the client's request was malformed. This is likely a bug in the client implementation. Check whether the latest available version is in use or file a report with the developers.
    102 HttpStatus: 400
    103 
    104 Value: 23
    105 Name: GENERIC_HTTP_HEADERS_MALFORMED
    106 Description: Some of the HTTP headers provided by the client were malformed, so the server could not handle the request. This is likely a bug in the client implementation. Check whether the latest available version is in use or file a report with the developers.
    107 HttpStatus: 400
    108 
    109 Value: 24
    110 Name: GENERIC_PAYTO_URI_MALFORMED
    111 Description: The `payto://` URI provided by the client is malformed. Check that it uses the syntax specified by RFC 8905 and that the bank account number is correct.
    112 HttpStatus: 400
    113 
    114 Value: 25
    115 Name: GENERIC_PARAMETER_MISSING
    116 Description: A required parameter in the request was missing. This is likely a bug in the client implementation. Check whether the latest available version is in use or file a report with the developers.
    117 HttpStatus: 400
    118 
    119 Value: 26
    120 Name: GENERIC_PARAMETER_MALFORMED
    121 Description: A parameter in the request was malformed. This is likely a bug in the client implementation. Check whether the latest available version is in use or file a report with the developers.
    122 HttpStatus: 400
    123 
    124 Value: 27
    125 Name: GENERIC_RESERVE_PUB_MALFORMED
    126 Description: The reserve public key was malformed.
    127 HttpStatus: 400
    128 FIXME: Fold with 26?
    129 
    130 Value: 28
    131 Name: GENERIC_COMPRESSION_INVALID
    132 Description: The body in the request could not be decompressed by the server. This is likely a bug in the client implementation. Check whether the latest available version is in use or file a report with the developers.
    133 HttpStatus: 400
    134 
    135 Value: 29
    136 Name: GENERIC_PATH_SEGMENT_MALFORMED
    137 Description: A segment in the path of the URL provided by the client is malformed. Check that the URL uses the correct encoding.
    138 HttpStatus: 400
    139 
    140 # Circumstantial client-side protocol problems (30-39)
    141 # (Circumstantial == may work with another server, but not this one)
    142 
    143 Value: 30
    144 Name: GENERIC_CURRENCY_MISMATCH
    145 Description: The currency involved in the operation is not acceptable for this server. Check the configuration and ensure that the currency specified for the service provider is supported by that provider.
    146 HttpStatus: 400
    147 
    148 Value: 31
    149 Name: GENERIC_URI_TOO_LONG
    150 Description: The URI is longer than the longest URI the HTTP server is willing to parse. If this was a legitimate request, the server administrator or software developers may need to increase the limit.
    151 HttpStatus: 414
    152 
    153 Value: 32
    154 Name: GENERIC_UPLOAD_EXCEEDS_LIMIT
    155 Description: The body is too large for the endpoint. If this was a legitimate request, the server administrator or software developers may need to increase the limit.
    156 HttpStatus: 413
    157 
    158 Value: 33
    159 Name: GENERIC_PARAMETER_EXTRA
    160 Description: A parameter that must not be present was included in the request. This is likely a bug in the client implementation. Check whether the latest available version is in use or file a report with the developers.
    161 HttpStatus: 400
    162 
    163 # 40-49: access control issues
    164 Value: 40
    165 Name: GENERIC_UNAUTHORIZED
    166 Description: The service refused the request due to lack of proper authorization. Accessing this endpoint requires an access token from the account owner.
    167 HttpStatus: 401
    168 
    169 Value: 41
    170 Name: GENERIC_TOKEN_UNKNOWN
    171 Description: The service refused the request because the given authorization token is unknown. The client should request a valid access token from the account owner.
    172 HttpStatus: 401
    173 
    174 Value: 42
    175 Name: GENERIC_TOKEN_EXPIRED
    176 Description: The service refused the request because the given authorization token expired. The client should request a fresh authorization token from the account owner.
    177 HttpStatus: 401
    178 
    179 Value: 43
    180 Name: GENERIC_TOKEN_MALFORMED
    181 Description: The service refused the request because the given authorization token is invalid or malformed. The client should check that it has the correct credentials.
    182 HttpStatus: 401
    183 
    184 Value: 44
    185 Name: GENERIC_FORBIDDEN
    186 Description: The service refused the request because the client lacks the required rights on the resource. The client may need different credentials to perform this operation.
    187 HttpStatus: 403
    188 
    189 # Server-side database problems (50-59)
    190 
    191 Value: 50
    192 Name: GENERIC_DB_SETUP_FAILED
    193 Description: The service failed to initialize its connection to the database. The system administrator should check that the service has permission to access the database and that the database is running.
    194 HttpStatus: 500
    195 
    196 Value: 51
    197 Name: GENERIC_DB_START_FAILED
    198 Description: The service encountered an error while starting the database transaction. The system administrator should check that the database is running.
    199 HttpStatus: 500
    200 
    201 Value: 52
    202 Name: GENERIC_DB_STORE_FAILED
    203 Description: The service failed to store information in its database. The system administrator should check that the database is running and review the service logs.
    204 HttpStatus: 500
    205 
    206 Value: 53
    207 Name: GENERIC_DB_FETCH_FAILED
    208 Description: The service failed to fetch information from its database. The system administrator should check that the database is running and review the service logs.
    209 HttpStatus: 500
    210 
    211 Value: 54
    212 Name: GENERIC_DB_COMMIT_FAILED
    213 Description: The service encountered an unrecoverable error trying to commit a transaction to the database. The system administrator should check that the database is running and review the service logs.
    214 HttpStatus: 500
    215 
    216 Value: 55
    217 Name: GENERIC_DB_SOFT_FAILURE
    218 Description: The service encountered an error while committing the database transaction; despite repeated retries, a conflicting transaction persisted. This indicates a serialization error. It may be caused by conflicting concurrent transactions or a missing index. Check that the latest available version is being used and file a report with the developers if the problem persists.
    219 HttpStatus: 500
    220 
    221 Value: 56
    222 Name: GENERIC_DB_INVARIANT_FAILURE
    223 Description: The service's database is inconsistent and violates service-internal invariants. Check whether the latest available version is in use or file a report with the developers.
    224 HttpStatus: 500
    225 
    226 
    227 # Server-side computational problems (60-69)
    228 
    229 Value: 60
    230 Name: GENERIC_INTERNAL_INVARIANT_FAILURE
    231 Description: The HTTP server experienced an internal invariant failure (bug). Check whether the latest available version is in use or file a report with the developers.
    232 HttpStatus: 500
    233 
    234 Value: 61
    235 Name: GENERIC_FAILED_COMPUTE_JSON_HASH
    236 Description: The service could not compute a cryptographic hash over a JSON value. Check whether the latest available version is in use or file a report with the developers.
    237 HttpStatus: 500
    238 
    239 Value: 62
    240 Name: GENERIC_FAILED_COMPUTE_AMOUNT
    241 Description: The service could not compute an amount. Check whether the latest available version is in use or file a report with the developers.
    242 HttpStatus: 500
    243 
    244 
    245 # Server-side resource problems (70-79)
    246 
    247 Value: 70
    248 Name: GENERIC_PARSER_OUT_OF_MEMORY
    249 Description: The HTTP server had insufficient memory to parse the request. Restarting services periodically can help, especially if Postgres is using excessive amounts of memory. Check with the system administrator to investigate.
    250 HttpStatus: 500
    251 
    252 Value: 71
    253 Name: GENERIC_ALLOCATION_FAILURE
    254 Description: The HTTP server failed to allocate memory. Restarting services periodically can help, especially if Postgres is using excessive amounts of memory. Check with the system administrator to investigate.
    255 HttpStatus: 500
    256 
    257 Value: 72
    258 Name: GENERIC_JSON_ALLOCATION_FAILURE
    259 Description: The HTTP server failed to allocate memory for building a JSON response. Restarting services periodically can help, especially if Postgres is using excessive amounts of memory. Ask the system administrator to investigate.
    260 HttpStatus: 500
    261 
    262 Value: 73
    263 Name: GENERIC_CURL_ALLOCATION_FAILURE
    264 Description: The HTTP server failed to allocate memory for making a CURL request. Restarting services periodically can help, especially if Postgres is using excessive amounts of memory. Check with the system administrator to investigate.
    265 HttpStatus: 500
    266 
    267 Value: 74
    268 Name: GENERIC_FAILED_TO_LOAD_TEMPLATE
    269 Description: The backend could not locate a required template to generate an HTML response. The system administrator should check whether the resource files are installed in the correct location and readable by the service.
    270 HttpStatus: 406
    271 
    272 Value: 75
    273 Name: GENERIC_FAILED_TO_EXPAND_TEMPLATE
    274 Description: The backend could not expand the template to generate an HTML response. The system administrator should investigate the logs and check whether the templates are well-formed.
    275 HttpStatus: 500
    276 
    277 Value: 76
    278 Name: GENERIC_FEATURE_NOT_IMPLEMENTED
    279 Description: The requested feature is not implemented by the server. The system administrator of the server may try to update the software or build it with other options to enable the feature.
    280 HttpStatus: 501
    281 
    282 Value: 77
    283 Name: GENERIC_OS_RESOURCE_ALLOCATION_FAILURE
    284 Description: The operating system failed to allocate required resources. Restarting services periodically can help, especially if Postgres is using excessive amounts of memory. Check with the system administrator to investigate.
    285 HttpStatus: 500
    286 
    287 Value: 78
    288 Name: GENERIC_REQUESTED_FORMAT_UNSUPPORTED
    289 Description: The requested content type is not supported by the server. The client should try requesting a different format.
    290 HttpStatus: 406
    291 
    292 # 80-99: available for future use
    293 
    294 
    295 
    296 # 100 - 999: VERBOTEN due to confusion with HTTP status codes (at least 100-599).
    297 
    298 # 1000 - 1999: Reserved for exchange
    299 # 1000 - 1099: Reserved for EXCHANGE_GENERIC
    300 
    301 Value: 1000
    302 Name: EXCHANGE_GENERIC_BAD_CONFIGURATION
    303 Description: Exchange is badly configured and thus cannot operate.
    304 HttpStatus: 500
    305 
    306 Value: 1001
    307 Name: EXCHANGE_GENERIC_OPERATION_UNKNOWN
    308 Description: The specified operation is unknown for this endpoint.
    309 HttpStatus: 404
    310 
    311 Value: 1002
    312 Name: EXCHANGE_GENERIC_WRONG_NUMBER_OF_SEGMENTS
    313 Description: The number of segments included in the URI does not match the number of segments expected by the endpoint.
    314 HttpStatus: 404
    315 
    316 Value: 1003
    317 Name: EXCHANGE_GENERIC_COIN_CONFLICTING_DENOMINATION_KEY
    318 Description: The same coin was already used with a different denomination previously.
    319 HttpStatus: 409
    320 
    321 Value: 1004
    322 Name: EXCHANGE_GENERIC_COINS_INVALID_COIN_PUB
    323 Description: The public key given to the `/coins/` endpoint of the exchange was malformed.
    324 HttpStatus: 400
    325 
    326 Value: 1005
    327 Name: EXCHANGE_GENERIC_DENOMINATION_KEY_UNKNOWN
    328 Description: The exchange is not aware of the denomination key the wallet requested for the operation.
    329 HttpStatus: 404
    330 
    331 Value: 1006
    332 Name: EXCHANGE_DENOMINATION_SIGNATURE_INVALID
    333 Description: The signature of the denomination key over the coin is not valid.
    334 HttpStatus: 403
    335 
    336 Value: 1007
    337 Name: EXCHANGE_GENERIC_KEYS_MISSING
    338 Description: The exchange failed to perform the operation as it could not find the private keys. This is a problem with the exchange setup, not with the client's request.
    339 HttpStatus: 503
    340 
    341 Value: 1008
    342 Name: EXCHANGE_GENERIC_DENOMINATION_VALIDITY_IN_FUTURE
    343 Description: Validity period of the denomination lies in the future.
    344 HttpStatus: 412
    345 
    346 Value: 1009
    347 Name: EXCHANGE_GENERIC_DENOMINATION_EXPIRED
    348 Description: The denomination key of the coin has passed its expiration time for the requested operation.
    349 HttpStatus: 410
    350 
    351 Value: 1010
    352 Name: EXCHANGE_GENERIC_DENOMINATION_REVOKED
    353 Description: Denomination key of the coin has been revoked.
    354 HttpStatus: 410
    355 
    356 Value: 1011
    357 Name: EXCHANGE_GENERIC_SECMOD_TIMEOUT
    358 Description: An operation where the exchange interacted with a security module timed out.
    359 HttpStatus: 500
    360 
    361 Value: 1012
    362 Name: EXCHANGE_GENERIC_INSUFFICIENT_FUNDS
    363 Description: The coin did not have sufficient residual value for the operation. The `history` in this response provides the coin's `residual_value`, which may be less than its `original_value`.
    364 HttpStatus: 409
    365 
    366 Value: 1013
    367 Name: EXCHANGE_GENERIC_COIN_HISTORY_COMPUTATION_FAILED
    368 Description: The exchange had an internal error reconstructing the transaction history of the coin that was being processed.
    369 HttpStatus: 500
    370 
    371 Value: 1014
    372 Name: EXCHANGE_GENERIC_HISTORY_DB_ERROR_INSUFFICIENT_FUNDS
    373 Description: The exchange failed to obtain the transaction history of the given coin from the database while generating an insufficient funds errors.
    374 HttpStatus: 500
    375 
    376 Value: 1015
    377 Name: EXCHANGE_GENERIC_COIN_CONFLICTING_AGE_HASH
    378 Description: The same coin was already used with a different age hash previously.
    379 HttpStatus: 409
    380 
    381 Value: 1016
    382 Name: EXCHANGE_GENERIC_INVALID_DENOMINATION_CIPHER_FOR_OPERATION
    383 Description: The requested operation is not valid for the cipher used by the selected denomination.
    384 HttpStatus: 400
    385 
    386 Value: 1017
    387 Name: EXCHANGE_GENERIC_CIPHER_MISMATCH
    388 Description: The provided arguments for the operation use inconsistent ciphers.
    389 HttpStatus: 400
    390 
    391 Value: 1018
    392 Name: EXCHANGE_GENERIC_NEW_DENOMS_ARRAY_SIZE_EXCESSIVE
    393 Description: The number of denominations specified in the request exceeds the limit of the exchange.
    394 HttpStatus: 400
    395 
    396 Value: 1019
    397 Name: EXCHANGE_GENERIC_COIN_UNKNOWN
    398 Description: The coin is not known to the exchange (yet).
    399 HttpStatus: 404
    400 
    401 Value: 1020
    402 Name: EXCHANGE_GENERIC_CLOCK_SKEW
    403 Description: The time at the server is too far off from the time specified in the request. Most likely the client system time is wrong.
    404 HttpStatus: 400
    405 
    406 Value: 1021
    407 Name: EXCHANGE_GENERIC_AMOUNT_EXCEEDS_DENOMINATION_VALUE
    408 Description: The specified amount for the coin is higher than the value of the denomination of the coin.
    409 HttpStatus: 400
    410 
    411 Value: 1022
    412 Name: EXCHANGE_GENERIC_GLOBAL_FEES_MISSING
    413 Description: The exchange was not properly configured with global fees.
    414 HttpStatus: 500
    415 
    416 Value: 1023
    417 Name: EXCHANGE_GENERIC_WIRE_FEES_MISSING
    418 Description: The exchange was not properly configured with wire fees.
    419 HttpStatus: 500
    420 
    421 Value: 1024
    422 Name: EXCHANGE_GENERIC_PURSE_PUB_MALFORMED
    423 Description: The purse public key was malformed.
    424 HttpStatus: 400
    425 
    426 Value: 1025
    427 Name: EXCHANGE_GENERIC_PURSE_UNKNOWN
    428 Description: The purse is unknown.
    429 HttpStatus: 404
    430 
    431 Value: 1026
    432 Name: EXCHANGE_GENERIC_PURSE_EXPIRED
    433 Description: The purse has expired.
    434 HttpStatus: 410
    435 
    436 Value: 1027
    437 Name: EXCHANGE_GENERIC_RESERVE_UNKNOWN
    438 Description: The exchange has no information about the `reserve_pub` that was provided.
    439 HttpStatus: 404
    440 
    441 Value: 1028
    442 Name: EXCHANGE_GENERIC_KYC_REQUIRED
    443 Description: The exchange is not allowed to proceed with the operation until the client has satisfied a KYC check.
    444 HttpStatus: 451
    445 
    446 Value: 1029
    447 Name: EXCHANGE_PURSE_DEPOSIT_COIN_CONFLICTING_ATTEST_VS_AGE_COMMITMENT
    448 Description: The provided age commitment and attestation are inconsistent: either both must be provided or neither may be provided.
    449 HttpStatus: 400
    450 
    451 Value: 1030
    452 Name: EXCHANGE_PURSE_DEPOSIT_COIN_AGE_ATTESTATION_FAILURE
    453 Description: The provided attestation for the minimum age could not be verified by the exchange.
    454 HttpStatus: 400
    455 
    456 Value: 1031
    457 Name: EXCHANGE_GENERIC_PURSE_DELETED
    458 Description: The purse was deleted.
    459 HttpStatus: 410
    460 
    461 Value: 1032
    462 Name: EXCHANGE_GENERIC_AML_OFFICER_PUB_MALFORMED
    463 Description: The public key of the AML officer in the URL was malformed.
    464 HttpStatus: 400
    465 
    466 Value: 1033
    467 Name: EXCHANGE_GENERIC_AML_OFFICER_GET_SIGNATURE_INVALID
    468 Description: The signature affirming the GET request of the AML officer is invalid.
    469 HttpStatus: 403
    470 
    471 Value: 1034
    472 Name: EXCHANGE_GENERIC_AML_OFFICER_ACCESS_DENIED
    473 Description: The specified AML officer does not have access at this time.
    474 HttpStatus: 403
    475 
    476 Value: 1035
    477 Name: EXCHANGE_GENERIC_AML_PENDING
    478 Description: The requested operation is denied pending the resolution of an anti-money laundering investigation by the exchange operator. This is a manual process, please wait and retry later.
    479 HttpStatus: 451
    480 
    481 Value: 1036
    482 Name: EXCHANGE_GENERIC_AML_FROZEN
    483 Description: The requested operation is denied as the account was frozen on suspicion of money laundering. Please contact the exchange operator.
    484 HttpStatus: 451
    485 
    486 Value: 1037
    487 Name: EXCHANGE_GENERIC_KYC_CONVERTER_FAILED
    488 Description: The exchange failed to start a KYC attribute conversion helper process. It is likely configured incorrectly.
    489 HttpStatus: 500
    490 
    491 Value: 1038
    492 Name: EXCHANGE_GENERIC_KYC_FAILED
    493 Description: The KYC operation failed. This could be because the KYC provider rejected the KYC data provided, or because the user aborted the KYC process.
    494 HttpStatus: 500
    495 
    496 Value: 1039
    497 Name: EXCHANGE_GENERIC_KYC_FALLBACK_FAILED
    498 Description: A fallback measure for a KYC operation failed. This is a bug. Users should contact the exchange operator.
    499 HttpStatus: 500
    500 
    501 Value: 1040
    502 Name: EXCHANGE_GENERIC_KYC_FALLBACK_UNKNOWN
    503 Description: The specified fallback measure for a KYC operation is unknown. This is a bug. Users should contact the exchange operator.
    504 HttpStatus: 500
    505 
    506 Value: 1041
    507 Name: EXCHANGE_GENERIC_BANK_ACCOUNT_UNKNOWN
    508 Description: The exchange is not aware of the bank account (payto URI or hash thereof) specified in the request and thus cannot perform the requested operation. The client should check that the selected account is correct.
    509 HttpStatus: 404
    510 
    511 Value: 1042
    512 Name: EXCHANGE_GENERIC_AML_PROGRAM_RECURSION_DETECTED
    513 Description: The AML processing at the exchange did not terminate in an adequate timeframe. This is likely a configuration problem at the payment service provider. Users should contact the exchange operator.
    514 HttpStatus: 500
    515 
    516 Value: 1043
    517 Name: EXCHANGE_GENERIC_KYC_SANCTION_LIST_CHECK_FAILED
    518 Description: A check against sanctions lists failed. This indicates an internal error in the sanctions-list processing logic. The exchange operator should investigate.
    519 HttpStatus: 500
    520 
    521 Value: 1044
    522 Name: EXCHANGE_GENERIC_TYPST_TEMPLATE_FAILURE
    523 Description: The process to generate a PDF from a template failed. A likely cause is a syntactic error in the template. This needs to be investigated by the exchange operator.
    524 HttpStatus: 500
    525 
    526 Value: 1045
    527 Name: EXCHANGE_GENERIC_PDFTK_FAILURE
    528 Description: A process to combine multiple PDFs into one larger document failed. A likely cause is a resource exhaustion problem on the server. This needs to be investigated by the exchange operator.
    529 HttpStatus: 500
    530 
    531 Value: 1046
    532 Name: EXCHANGE_GENERIC_TYPST_CRASH
    533 Description: The process to generate a PDF from a template crashed. A likely cause is a bug in the Typst software. This needs to be investigated by the exchange operator.
    534 HttpStatus: 500
    535 
    536 Value: 1047
    537 Name: EXCHANGE_GENERIC_PDFTK_CRASH
    538 Description: The process to combine multiple PDFs into a larger document crashed. A likely cause is a bug in the pdftk software. This needs to be investigated by the exchange operator.
    539 HttpStatus: 500
    540 
    541 Value: 1048
    542 Name: EXCHANGE_GENERIC_NO_TYPST_OR_PDFTK
    543 Description: One of the binaries needed to generate the PDF is not installed. If this feature is required, the system administrator should make sure Typst and pdftk are both installed.
    544 HttpStatus: 501
    545 
    546 Value: 1049
    547 Name: EXCHANGE_GENERIC_TARGET_ACCOUNT_UNKNOWN
    548 Description: The exchange is not aware of the given target account. The specified account is not a customer of this service.
    549 HttpStatus: 404
    550 
    551 Value: 1050
    552 Name: EXCHANGE_GENERIC_AML_OFFICER_READ_ONLY
    553 Description: The specified AML officer does not have write access at this time.
    554 HttpStatus: 409
    555 
    556 Value: 1100
    557 Name: EXCHANGE_DEPOSITS_GET_NOT_FOUND
    558 Description: The exchange did not find information about the specified transaction in the database.
    559 HttpStatus: 404
    560 
    561 Value: 1101
    562 Name: EXCHANGE_DEPOSITS_GET_INVALID_H_WIRE
    563 Description: The wire hash given to the `/deposits/` handler was malformed.
    564 HttpStatus: 400
    565 
    566 Value: 1102
    567 Name: EXCHANGE_DEPOSITS_GET_INVALID_MERCHANT_PUB
    568 Description: The merchant key given to the `/deposits/` handler was malformed.
    569 HttpStatus: 400
    570 
    571 Value: 1103
    572 Name: EXCHANGE_DEPOSITS_GET_INVALID_H_CONTRACT_TERMS
    573 Description: The hash of the contract terms given to the `/deposits/` handler was malformed.
    574 HttpStatus: 400
    575 
    576 Value: 1104
    577 Name: EXCHANGE_DEPOSITS_GET_INVALID_COIN_PUB
    578 Description: The coin public key given to the `/deposits/` handler was malformed.
    579 HttpStatus: 400
    580 
    581 Value: 1105
    582 Name: EXCHANGE_DEPOSITS_GET_INVALID_SIGNATURE_BY_EXCHANGE
    583 Description: The signature returned by the exchange in a `/deposits/` request was malformed.
    584 HttpStatus: 0
    585 
    586 Value: 1106
    587 Name: EXCHANGE_DEPOSITS_GET_MERCHANT_SIGNATURE_INVALID
    588 Description: The signature of the merchant is invalid.
    589 HttpStatus: 403
    590 
    591 Value: 1107
    592 Name: EXCHANGE_DEPOSITS_POLICY_NOT_ACCEPTED
    593 Description: The provided policy data was not accepted.
    594 HttpStatus: 400
    595 
    596 Value: 1150
    597 Name: EXCHANGE_WITHDRAW_INSUFFICIENT_FUNDS
    598 Description: The given reserve does not have sufficient funds to admit the requested withdrawal operation at this time. The response includes the current `balance` of the reserve and the transaction `history` that led to this balance.
    599 HttpStatus: 409
    600 
    601 Value: 1151
    602 Name: EXCHANGE_AGE_WITHDRAW_INSUFFICIENT_FUNDS
    603 Description: The given reserve does not have sufficient funds to admit the requested age-withdrawal operation at this time. The response includes the current `balance` of the reserve and the transaction `history` that led to this balance.
    604 HttpStatus: 409
    605 
    606 Value: 1152
    607 Name: EXCHANGE_WITHDRAW_AMOUNT_FEE_OVERFLOW
    608 Description: The amount to withdraw together with the fee exceeds the numeric range for Taler amounts.  This is not a client failure, as the coin value and fees come from the exchange's configuration.
    609 HttpStatus: 500
    610 
    611 Value: 1153
    612 Name: EXCHANGE_WITHDRAW_SIGNATURE_FAILED
    613 Description: The exchange failed to create the signature using the denomination key.
    614 HttpStatus: 500
    615 
    616 Value: 1154
    617 Name: EXCHANGE_WITHDRAW_RESERVE_SIGNATURE_INVALID
    618 Description: The signature of the reserve is not valid.
    619 HttpStatus: 403
    620 
    621 Value: 1155
    622 Name: EXCHANGE_RESERVE_HISTORY_ERROR_INSUFFICIENT_FUNDS
    623 Description: Computing the reserve history resulted in a negative overall balance, which should be impossible.
    624 HttpStatus: 500
    625 
    626 Value: 1156
    627 Name: EXCHANGE_GET_RESERVE_HISTORY_ERROR_INSUFFICIENT_BALANCE
    628 Description: The reserve did not have sufficient funds in it to pay for a full reserve history statement.
    629 HttpStatus: 409
    630 
    631 Value: 1158
    632 Name: EXCHANGE_WITHDRAW_DENOMINATION_KEY_LOST
    633 Description: Withdraw period of the coin to be withdrawn is in the past.
    634 HttpStatus: 410
    635 
    636 Value: 1159
    637 Name: EXCHANGE_WITHDRAW_UNBLIND_FAILURE
    638 Description: The client failed to unblind the blind signature.
    639 HttpStatus: 0
    640 
    641 Value: 1160
    642 Name: EXCHANGE_WITHDRAW_NONCE_REUSE
    643 Description: The client reused a withdraw nonce, which is not allowed.
    644 HttpStatus: 409
    645 
    646 Value: 1161
    647 Name: EXCHANGE_WITHDRAW_COMMITMENT_UNKNOWN
    648 Description: The client provided an unknown commitment for an age-withdraw request.
    649 HttpStatus: 400
    650 
    651 Value: 1162
    652 Name: EXCHANGE_WITHDRAW_AMOUNT_OVERFLOW
    653 Description: The total sum of amounts from the denominations did overflow.
    654 HttpStatus: 400
    655 
    656 Value: 1163
    657 Name: EXCHANGE_AGE_WITHDRAW_AMOUNT_INCORRECT
    658 Description: The total sum of value and fees from the denominations differs from the committed amount with fees.
    659 HttpStatus: 400
    660 
    661 Value: 1164
    662 Name: EXCHANGE_WITHDRAW_REVEAL_INVALID_HASH
    663 Description: The original commitment differs from the calculated hash.
    664 HttpStatus: 400
    665 
    666 Value: 1165
    667 Name: EXCHANGE_WITHDRAW_MAXIMUM_AGE_TOO_LARGE
    668 Description: The maximum age in the commitment is too large for the reserve.
    669 HttpStatus: 409
    670 
    671 Value: 1175
    672 Name: EXCHANGE_WITHDRAW_IDEMPOTENT_PLANCHET
    673 Description: The withdraw operation included the same planchet more than once. This is not allowed.
    674 HttpStatus: 400
    675 
    676 Value: 1205
    677 Name: EXCHANGE_DEPOSIT_COIN_SIGNATURE_INVALID
    678 Description: The signature made by the coin over the deposit permission is not valid.
    679 HttpStatus: 403
    680 
    681 Value: 1206
    682 Name: EXCHANGE_DEPOSIT_CONFLICTING_CONTRACT
    683 Description: The same coin was already deposited for the same merchant and contract with other details.
    684 HttpStatus: 409
    685 
    686 Value: 1207
    687 Name: EXCHANGE_DEPOSIT_NEGATIVE_VALUE_AFTER_FEE
    688 Description: The stated value of the coin after the deposit fee is subtracted would be negative.
    689 HttpStatus: 400
    690 
    691 Value: 1208
    692 Name: EXCHANGE_DEPOSIT_REFUND_DEADLINE_AFTER_WIRE_DEADLINE
    693 Description: The stated refund deadline is after the wire deadline.
    694 HttpStatus: 400
    695 
    696 Value: 1209
    697 Name: EXCHANGE_DEPOSIT_WIRE_DEADLINE_IS_NEVER
    698 Description: The stated wire deadline is `never`, which is not allowed.
    699 HttpStatus: 400
    700 
    701 Value: 1210
    702 Name: EXCHANGE_DEPOSIT_INVALID_WIRE_FORMAT_JSON
    703 Description: The exchange failed to canonicalize and hash the given wire format. For example, the merchant failed to provide the `salt` or a valid `payto://` URI in the wire details. Note that the exchange performs only basic sanity checking on the wire details; it cannot guarantee that the banking system can route funds to the specified address, even if this check succeeds.
    704 HttpStatus: 400
    705 
    706 Value: 1211
    707 Name: EXCHANGE_DEPOSIT_INVALID_WIRE_FORMAT_CONTRACT_HASH_CONFLICT
    708 Description: The hash of the given wire address does not match the wire hash specified in the proposal data.
    709 HttpStatus: 400
    710 
    711 Value: 1221
    712 Name: EXCHANGE_DEPOSIT_INVALID_SIGNATURE_BY_EXCHANGE
    713 Description: The signature provided by the exchange is not valid.
    714 HttpStatus: 0
    715 
    716 Value: 1222
    717 Name: EXCHANGE_DEPOSIT_FEE_ABOVE_AMOUNT
    718 Description: The deposited amount is smaller than the deposit fee, which would result in a negative contribution.
    719 HttpStatus: 400
    720 
    721 
    722 Value: 1240
    723 Name: EXCHANGE_EXTENSIONS_INVALID_FULFILLMENT
    724 Description: The proof of policy fulfillment was invalid.
    725 HttpStatus: 400
    726 
    727 
    728 Value: 1251
    729 Name: EXCHANGE_COIN_HISTORY_BAD_SIGNATURE
    730 Description: The coin history was requested with a bad signature.
    731 HttpStatus: 403
    732 
    733 Value: 1252
    734 Name: EXCHANGE_RESERVE_HISTORY_BAD_SIGNATURE
    735 Description: The reserve history was requested with a bad signature.
    736 HttpStatus: 403
    737 
    738 
    739 Value: 1302
    740 Name: EXCHANGE_MELT_FEES_EXCEED_CONTRIBUTION
    741 Description: The exchange encountered melt fees exceeding the melted coin's contribution.
    742 HttpStatus: 400
    743 
    744 Value: 1303
    745 Name: EXCHANGE_MELT_COIN_SIGNATURE_INVALID
    746 Description: The signature made with the coin to be melted is invalid.
    747 HttpStatus: 403
    748 
    749 Value: 1305
    750 Name: EXCHANGE_MELT_COIN_EXPIRED_NO_ZOMBIE
    751 Description: The denomination of the given coin has passed its expiration date and is not a valid zombie (that is, it was not refreshed with the fresh coin being subjected to recoup).
    752 HttpStatus: 400
    753 
    754 Value: 1306
    755 Name: EXCHANGE_MELT_INVALID_SIGNATURE_BY_EXCHANGE
    756 Description: The signature returned by the exchange in a melt request was malformed.
    757 HttpStatus: 0
    758 
    759 
    760 Value: 1353
    761 Name: EXCHANGE_REFRESHES_REVEAL_COMMITMENT_VIOLATION
    762 Description: The provided transfer keys do not match up with the original commitment.  Information about the original commitment is included in the response.
    763 HttpStatus: 409
    764 
    765 Value: 1354
    766 Name: EXCHANGE_REFRESHES_REVEAL_SIGNING_ERROR
    767 Description: Failed to produce the blinded signatures over the coins to be returned.
    768 HttpStatus: 500
    769 
    770 Value: 1355
    771 Name: EXCHANGE_REFRESHES_REVEAL_SESSION_UNKNOWN
    772 Description: The exchange is unaware of the refresh session specified in the request.
    773 HttpStatus: 404
    774 
    775 Value: 1356
    776 Name: EXCHANGE_REFRESHES_REVEAL_CNC_TRANSFER_ARRAY_SIZE_INVALID
    777 Description: The size of the cut-and-choose dimension of the private transfer keys request does not match #TALER_CNC_KAPPA - 1.
    778 HttpStatus: 400
    779 
    780 Value: 1358
    781 Name: EXCHANGE_REFRESHES_REVEAL_NEW_DENOMS_ARRAY_SIZE_MISMATCH
    782 Description: The number of envelopes given does not match the number of denomination keys given.
    783 HttpStatus: 400
    784 
    785 Value: 1359
    786 Name: EXCHANGE_REFRESHES_REVEAL_COST_CALCULATION_OVERFLOW
    787 Description: The exchange encountered a numeric overflow totaling up the cost for the refresh operation.
    788 HttpStatus: 500
    789 
    790 Value: 1360
    791 Name: EXCHANGE_REFRESHES_REVEAL_AMOUNT_INSUFFICIENT
    792 Description: The exchange's cost calculation shows that the melt amount is below the costs of the transaction.
    793 HttpStatus: 400
    794 
    795 Value: 1361
    796 Name: EXCHANGE_REFRESHES_REVEAL_LINK_SIGNATURE_INVALID
    797 Description: The signature made with the coin over the link data is invalid.
    798 HttpStatus: 403
    799 
    800 Value: 1362
    801 Name: EXCHANGE_REFRESHES_REVEAL_INVALID_RCH
    802 Description: The refresh session hash given to the `/refreshes/` handler was malformed.
    803 HttpStatus: 400
    804 
    805 Value: 1363
    806 Name: EXCHANGE_REFRESHES_REVEAL_OPERATION_INVALID
    807 Description: The specified operation is invalid for this endpoint.
    808 HttpStatus: 400
    809 
    810 Value: 1364
    811 Name: EXCHANGE_REFRESHES_REVEAL_AGE_RESTRICTION_NOT_SUPPORTED
    812 Description: The client provided age commitment data, but age restriction is not supported on this server.
    813 HttpStatus: 400
    814 
    815 Value: 1365
    816 Name: EXCHANGE_REFRESHES_REVEAL_AGE_RESTRICTION_COMMITMENT_INVALID
    817 Description: The client provided invalid age commitment data: missing, not an array, or  array of invalid size.
    818 HttpStatus: 400
    819 
    820 
    821 Value: 1400
    822 Name: EXCHANGE_LINK_COIN_UNKNOWN
    823 Description: The coin specified in the link request is unknown to the exchange.
    824 HttpStatus: 404
    825 
    826 Value: 1450
    827 Name: EXCHANGE_TRANSFERS_GET_WTID_MALFORMED
    828 Description: The public key given to the `/transfers/` handler was malformed.
    829 HttpStatus: 400
    830 
    831 Value: 1451
    832 Name: EXCHANGE_TRANSFERS_GET_WTID_NOT_FOUND
    833 Description: The exchange did not find information about the specified wire transfer identifier in the database.
    834 HttpStatus: 404
    835 
    836 Value: 1452
    837 Name: EXCHANGE_TRANSFERS_GET_WIRE_FEE_NOT_FOUND
    838 Description: The exchange did not find information about the wire transfer fees it charged.
    839 HttpStatus: 500
    840 
    841 Value: 1453
    842 Name: EXCHANGE_TRANSFERS_GET_WIRE_FEE_INCONSISTENT
    843 Description: The exchange found a wire fee that was above the total transfer value (and thus could not have been charged).
    844 HttpStatus: 500
    845 
    846 Value: 1475
    847 Name: EXCHANGE_PURSES_INVALID_WAIT_TARGET
    848 Description: The wait target of the URL was not in the set of expected values.
    849 HttpStatus: 400
    850 
    851 Value: 1476
    852 Name: EXCHANGE_PURSES_GET_INVALID_SIGNATURE_BY_EXCHANGE
    853 Description: The signature on the purse status returned by the exchange was invalid.
    854 HttpStatus: 0
    855 
    856 
    857 Value: 1500
    858 Name: EXCHANGE_REFUND_COIN_NOT_FOUND
    859 Description: The exchange has no information about the coin to be refunded. Without a transaction history, it cannot issue a refund. This is acceptable; the owner should refresh the coin directly without executing the refund.
    860 HttpStatus: 404
    861 
    862 Value: 1501
    863 Name: EXCHANGE_REFUND_CONFLICT_DEPOSIT_INSUFFICIENT
    864 Description: The refund request could not be processed because the coin's transaction history does not permit it: the refunds would exceed the deposit amount. The `history` in the response demonstrates this.
    865 HttpStatus: 409
    866 
    867 Value: 1502
    868 Name: EXCHANGE_REFUND_DEPOSIT_NOT_FOUND
    869 Description: The exchange knows about the coin to be refunded, but not about the specific `/deposit` operation. Therefore, it cannot issue a refund because it does not know whether this merchant public key is authorized to issue one.
    870 HttpStatus: 404
    871 
    872 Value: 1503
    873 Name: EXCHANGE_REFUND_MERCHANT_ALREADY_PAID
    874 Description: The exchange can no longer refund the customer or coin because the money was already transferred to the merchant. The refund deadline has passed.
    875 HttpStatus: 410
    876 
    877 Value: 1504
    878 Name: EXCHANGE_REFUND_FEE_TOO_LOW
    879 Description: The refund fee specified for the request is lower than the refund fee charged by the exchange for the given denomination key of the refunded coin.
    880 HttpStatus: 400
    881 
    882 Value: 1505
    883 Name: EXCHANGE_REFUND_FEE_ABOVE_AMOUNT
    884 Description: The refunded amount is smaller than the refund fee, which would result in a negative refund.
    885 HttpStatus: 400
    886 
    887 Value: 1506
    888 Name: EXCHANGE_REFUND_MERCHANT_SIGNATURE_INVALID
    889 Description: The signature of the merchant is invalid.
    890 HttpStatus: 403
    891 
    892 Value: 1507
    893 Name: EXCHANGE_REFUND_MERCHANT_SIGNING_FAILED
    894 Description: Merchant backend failed to create the refund confirmation signature.
    895 HttpStatus: 500
    896 
    897 Value: 1508
    898 Name: EXCHANGE_REFUND_INVALID_SIGNATURE_BY_EXCHANGE
    899 Description: The signature returned by the exchange in a refund request was malformed.
    900 HttpStatus: 0
    901 
    902 Value: 1509
    903 Name: EXCHANGE_REFUND_INVALID_FAILURE_PROOF_BY_EXCHANGE
    904 Description: The failure proof returned by the exchange is incorrect.
    905 HttpStatus: 0
    906 
    907 Value: 1510
    908 Name: EXCHANGE_REFUND_INCONSISTENT_AMOUNT
    909 Description: Conflicting refund granted before with different amount but same refund transaction ID.
    910 HttpStatus: 424
    911 
    912 Value: 1550
    913 Name: EXCHANGE_RECOUP_SIGNATURE_INVALID
    914 Description: The given coin signature is invalid for the request.
    915 HttpStatus: 403
    916 
    917 Value: 1551
    918 Name: EXCHANGE_RECOUP_WITHDRAW_NOT_FOUND
    919 Description: The exchange could not find the corresponding withdraw operation. The request is denied.
    920 HttpStatus: 404
    921 
    922 Value: 1552
    923 Name: EXCHANGE_RECOUP_COIN_BALANCE_ZERO
    924 Description: The coin's remaining balance is zero.  The request is denied.
    925 HttpStatus: 403
    926 Note: dead in latest cde
    927 
    928 Value: 1553
    929 Name: EXCHANGE_RECOUP_BLINDING_FAILED
    930 Description: The exchange failed to reproduce the coin's blinding.
    931 HttpStatus: 500
    932 
    933 Value: 1554
    934 Name: EXCHANGE_RECOUP_COIN_BALANCE_NEGATIVE
    935 Description: The coin's remaining balance is zero.  The request is denied.
    936 HttpStatus: 500
    937 Note: dead in latest cde
    938 
    939 Value: 1555
    940 Name: EXCHANGE_RECOUP_NOT_ELIGIBLE
    941 Description: The coin's denomination has not been revoked yet.
    942 HttpStatus: 410
    943 
    944 Value: 1556
    945 Name: EXCHANGE_RECOUP_WITHDRAW_BATCH_SIZE_MISMATCH
    946 Description: The number of coins in the recoup request does not match the number of coins signed in the withdraw operation.
    947 HttpStatus: 400
    948 
    949 Value: 1557
    950 Name: EXCHANGE_RECOUP_WITHDRAW_COMMITMENT_MISMATCH
    951 Description: The hash over the coins in the recoup request does not match the commitment of the withdraw operation.  At least one disclosed coin was not part of the operation.
    952 HttpStatus: 409
    953 
    954 Value: 1558
    955 Name: EXCHANGE_RECOUP_WITHDRAW_DENOMINATION_MISMATCH
    956 Description: The denomination of a disclosed coin differs from the denomination recorded for that position of the withdraw operation.
    957 HttpStatus: 409
    958 
    959 Value: 1575
    960 Name: EXCHANGE_RECOUP_REFRESH_SIGNATURE_INVALID
    961 Description: The given coin signature is invalid for the request.
    962 HttpStatus: 403
    963 
    964 Value: 1576
    965 Name: EXCHANGE_RECOUP_REFRESH_MELT_NOT_FOUND
    966 Description: The exchange could not find the corresponding melt operation. The request is denied.
    967 HttpStatus: 404
    968 
    969 Value: 1578
    970 Name: EXCHANGE_RECOUP_REFRESH_BLINDING_FAILED
    971 Description: The exchange failed to reproduce the coin's blinding.
    972 HttpStatus: 500
    973 
    974 Value: 1580
    975 Name: EXCHANGE_RECOUP_REFRESH_NOT_ELIGIBLE
    976 Description: The coin's denomination has not been revoked yet.
    977 HttpStatus: 410
    978 
    979 Value: 1581
    980 Name: EXCHANGE_RECOUP_REFRESH_BATCH_SIZE_MISMATCH
    981 Description: The number of coins in the recoup request does not match the number of coins signed in the refresh operation.
    982 HttpStatus: 400
    983 
    984 Value: 1582
    985 Name: EXCHANGE_RECOUP_REFRESH_COMMITMENT_MISMATCH
    986 Description: The hash over the coins in the recoup request does not match the commitment of the refresh operation.  At least one disclosed coin was not part of the operation.
    987 HttpStatus: 409
    988 
    989 Value: 1583
    990 Name: EXCHANGE_RECOUP_REFRESH_DENOMINATION_MISMATCH
    991 Description: The denomination of a disclosed coin differs from the denomination recorded for that position of the refresh operation.
    992 HttpStatus: 409
    993 
    994 
    995 Value: 1600
    996 Name: EXCHANGE_KEYS_TIMETRAVEL_FORBIDDEN
    997 Description: This exchange does not allow clients to request `/keys` for times other than the current exchange time.
    998 HttpStatus: 403
    999 
   1000 Value: 1650
   1001 Name: EXCHANGE_WIRE_SIGNATURE_INVALID
   1002 Description: A signature in the server's response was malformed.
   1003 HttpStatus: 0
   1004 
   1005 Value: 1651
   1006 Name: EXCHANGE_WIRE_NO_ACCOUNTS_CONFIGURED
   1007 Description: No bank accounts are enabled for the exchange. The administrator should enable an account using the `taler-exchange-offline` tool.
   1008 HttpStatus: 500
   1009 
   1010 Value: 1652
   1011 Name: EXCHANGE_WIRE_INVALID_PAYTO_CONFIGURED
   1012 Description: The payto:// URI stored in the exchange database for its bank account is malformed.
   1013 HttpStatus: 500
   1014 
   1015 Value: 1653
   1016 Name: EXCHANGE_WIRE_FEES_NOT_CONFIGURED
   1017 Description: No wire fees are configured for an enabled wire method of the exchange. The administrator must set the wire-fee using the taler-exchange-offline tool.
   1018 HttpStatus: 500
   1019 
   1020 
   1021 Value: 1675
   1022 Name: EXCHANGE_RESERVES_PURSE_CREATE_CONFLICTING_META_DATA
   1023 Description: This purse was previously created with different metadata.
   1024 HttpStatus: 409
   1025 
   1026 Value: 1676
   1027 Name: EXCHANGE_RESERVES_PURSE_MERGE_CONFLICTING_META_DATA
   1028 Description: This purse was previously merged with different metadata.
   1029 HttpStatus: 409
   1030 
   1031 Value: 1677
   1032 Name: EXCHANGE_RESERVES_PURSE_CREATE_INSUFFICIENT_FUNDS
   1033 Description: The reserve has insufficient funds to create another purse.
   1034 HttpStatus: 409
   1035 
   1036 Value: 1678
   1037 Name: EXCHANGE_RESERVES_PURSE_FEE_TOO_LOW
   1038 Description: The purse fee specified for the request is lower than the purse fee charged by the exchange at this time.
   1039 HttpStatus: 400
   1040 
   1041 Value: 1679
   1042 Name: EXCHANGE_PURSE_DELETE_ALREADY_DECIDED
   1043 Description: The payment request cannot be deleted anymore, as it either already completed or timed out.
   1044 HttpStatus: 409
   1045 
   1046 Value: 1680
   1047 Name: EXCHANGE_PURSE_DELETE_SIGNATURE_INVALID
   1048 Description: The signature affirming the purse deletion is invalid.
   1049 HttpStatus: 403
   1050 
   1051 Value: 1681
   1052 Name: EXCHANGE_RESERVES_AGE_RESTRICTION_REQUIRED
   1053 Description: Withdrawal from the reserve requires age restriction to be set.
   1054 HttpStatus: 403
   1055 
   1056 Value: 1700
   1057 Name: EXCHANGE_DENOMINATION_HELPER_UNAVAILABLE
   1058 Description: The exchange failed to talk to the process responsible for its private denomination keys or the helpers had no denominations (properly) configured.
   1059 HttpStatus: 502
   1060 
   1061 Value: 1701
   1062 Name: EXCHANGE_DENOMINATION_HELPER_BUG
   1063 Description: The response from the denomination key helper process was malformed.
   1064 HttpStatus: 500
   1065 
   1066 Value: 1702
   1067 Name: EXCHANGE_DENOMINATION_HELPER_TOO_EARLY
   1068 Description: The helper refuses to sign with the key, because it is too early: the validity period has not yet started.
   1069 HttpStatus: 400
   1070 
   1071 Value: 1725
   1072 Name: EXCHANGE_PURSE_DEPOSIT_EXCHANGE_SIGNATURE_INVALID
   1073 Description: The exchange's signature on the response was invalid.
   1074 HttpStatus: 0
   1075 
   1076 
   1077 Value: 1750
   1078 Name: EXCHANGE_SIGNKEY_HELPER_UNAVAILABLE
   1079 Description: The exchange failed to talk to the process responsible for its private signing keys.
   1080 HttpStatus: 502
   1081 
   1082 Value: 1751
   1083 Name: EXCHANGE_SIGNKEY_HELPER_BUG
   1084 Description: The response from the online signing key helper process was malformed.
   1085 HttpStatus: 500
   1086 
   1087 Value: 1752
   1088 Name: EXCHANGE_SIGNKEY_HELPER_TOO_EARLY
   1089 Description: The helper refuses to sign with the key, because it is too early: the validity period has not yet started.
   1090 HttpStatus: 400
   1091 
   1092 Value: 1753
   1093 Name: EXCHANGE_SIGNKEY_HELPER_OFFLINE_MISSING
   1094 Description: The signatures from the master exchange public key are missing, thus the exchange cannot currently sign its API responses. The exchange operator must use taler-exchange-offline to sign the current key material.
   1095 HttpStatus: 500
   1096 
   1097 
   1098 
   1099 Value: 1775
   1100 Name: EXCHANGE_RESERVES_PURSE_EXPIRATION_BEFORE_NOW
   1101 Description: The purse expiration time is in the past at the time of its creation.
   1102 HttpStatus: 400
   1103 
   1104 Value: 1776
   1105 Name: EXCHANGE_RESERVES_PURSE_EXPIRATION_IS_NEVER
   1106 Description: The purse expiration time is set to never, which is not allowed.
   1107 HttpStatus: 400
   1108 
   1109 Value: 1777
   1110 Name: EXCHANGE_RESERVES_PURSE_MERGE_SIGNATURE_INVALID
   1111 Description: The signature affirming the merge of the purse is invalid.
   1112 HttpStatus: 403
   1113 
   1114 Value: 1778
   1115 Name: EXCHANGE_RESERVES_RESERVE_MERGE_SIGNATURE_INVALID
   1116 Description: The signature by the reserve affirming the merge is invalid.
   1117 HttpStatus: 403
   1118 
   1119 Value: 1785
   1120 Name: EXCHANGE_RESERVES_OPEN_BAD_SIGNATURE
   1121 Description: The signature by the reserve affirming the open operation is invalid.
   1122 HttpStatus: 403
   1123 
   1124 Value: 1786
   1125 Name: EXCHANGE_RESERVES_CLOSE_BAD_SIGNATURE
   1126 Description: The signature by the reserve affirming the close operation is invalid.
   1127 HttpStatus: 403
   1128 
   1129 Value: 1787
   1130 Name: EXCHANGE_RESERVES_ATTEST_BAD_SIGNATURE
   1131 Description: The signature by the reserve affirming the attestation request is invalid.
   1132 HttpStatus: 403
   1133 
   1134 Value: 1788
   1135 Name: EXCHANGE_RESERVES_CLOSE_NO_TARGET_ACCOUNT
   1136 Description: The exchange does not know an origin account to which the remaining reserve balance could be wired to, and the wallet failed to provide one.
   1137 HttpStatus: 409
   1138 
   1139 Value: 1789
   1140 Name: EXCHANGE_RESERVES_OPEN_INSUFFICIENT_FUNDS
   1141 Description: The reserve balance is insufficient to pay for the open operation.
   1142 HttpStatus: 409
   1143 
   1144 Value: 1790
   1145 Name: EXCHANGE_RESERVES_OPEN_COIN_SIGNATURE_INVALID
   1146 Description: A coin signature for a deposit to pay to open the reserve is invalid.
   1147 HttpStatus: 403
   1148 
   1149 Value: 1800
   1150 Name: EXCHANGE_MANAGEMENT_AUDITOR_NOT_FOUND
   1151 Description: The auditor that was supposed to be disabled is unknown to this exchange.
   1152 HttpStatus: 404
   1153 
   1154 Value: 1801
   1155 Name: EXCHANGE_MANAGEMENT_AUDITOR_MORE_RECENT_PRESENT
   1156 Description: The exchange has a more recently signed conflicting instruction and is thus refusing the current change (replay detected).
   1157 HttpStatus: 409
   1158 
   1159 Value: 1802
   1160 Name: EXCHANGE_MANAGEMENT_AUDITOR_ADD_SIGNATURE_INVALID
   1161 Description: The signature to add or enable the auditor does not validate.
   1162 HttpStatus: 403
   1163 
   1164 Value: 1803
   1165 Name: EXCHANGE_MANAGEMENT_AUDITOR_DEL_SIGNATURE_INVALID
   1166 Description: The signature to disable the auditor does not validate.
   1167 HttpStatus: 403
   1168 
   1169 Value: 1804
   1170 Name: EXCHANGE_MANAGEMENT_DENOMINATION_REVOKE_SIGNATURE_INVALID
   1171 Description: The signature to revoke the denomination does not validate.
   1172 HttpStatus: 403
   1173 
   1174 Value: 1805
   1175 Name: EXCHANGE_MANAGEMENT_SIGNKEY_REVOKE_SIGNATURE_INVALID
   1176 Description: The signature to revoke the online signing key does not validate.
   1177 HttpStatus: 403
   1178 
   1179 Value: 1806
   1180 Name: EXCHANGE_MANAGEMENT_WIRE_MORE_RECENT_PRESENT
   1181 Description: The exchange has a more recently signed conflicting instruction and is thus refusing the current change (replay detected).
   1182 HttpStatus: 409
   1183 
   1184 Value: 1807
   1185 Name: EXCHANGE_MANAGEMENT_KEYS_SIGNKEY_UNKNOWN
   1186 Description: The signingkey specified is unknown to the exchange.
   1187 HttpStatus: 404
   1188 
   1189 Value: 1808
   1190 Name: EXCHANGE_MANAGEMENT_WIRE_DETAILS_SIGNATURE_INVALID
   1191 Description: The signature to publish wire account does not validate.
   1192 HttpStatus: 403
   1193 
   1194 Value: 1809
   1195 Name: EXCHANGE_MANAGEMENT_WIRE_ADD_SIGNATURE_INVALID
   1196 Description: The signature to add the wire account does not validate.
   1197 HttpStatus: 403
   1198 
   1199 Value: 1810
   1200 Name: EXCHANGE_MANAGEMENT_WIRE_DEL_SIGNATURE_INVALID
   1201 Description: The signature to disable the wire account does not validate.
   1202 HttpStatus: 403
   1203 
   1204 Value: 1811
   1205 Name: EXCHANGE_MANAGEMENT_WIRE_NOT_FOUND
   1206 Description: The wire account to be disabled is unknown to the exchange.
   1207 HttpStatus: 404
   1208 
   1209 Value: 1812
   1210 Name: EXCHANGE_MANAGEMENT_WIRE_FEE_SIGNATURE_INVALID
   1211 Description: The signature to affirm wire fees does not validate.
   1212 HttpStatus: 403
   1213 
   1214 Value: 1813
   1215 Name: EXCHANGE_MANAGEMENT_WIRE_FEE_MISMATCH
   1216 Description: The signature conflicts with a previous signature affirming different fees.
   1217 HttpStatus: 409
   1218 
   1219 Value: 1814
   1220 Name: EXCHANGE_MANAGEMENT_KEYS_DENOMKEY_ADD_SIGNATURE_INVALID
   1221 Description: The signature affirming the denomination key is invalid.
   1222 HttpStatus: 403
   1223 
   1224 Value: 1815
   1225 Name: EXCHANGE_MANAGEMENT_KEYS_SIGNKEY_ADD_SIGNATURE_INVALID
   1226 Description: The signature affirming the signing key is invalid.
   1227 HttpStatus: 403
   1228 
   1229 Value: 1816
   1230 Name: EXCHANGE_MANAGEMENT_GLOBAL_FEE_MISMATCH
   1231 Description: The signature conflicts with a previous signature affirming different fees.
   1232 HttpStatus: 409
   1233 
   1234 Value: 1817
   1235 Name: EXCHANGE_MANAGEMENT_GLOBAL_FEE_SIGNATURE_INVALID
   1236 Description: The signature affirming the fee structure is invalid.
   1237 HttpStatus: 403
   1238 
   1239 Value: 1818
   1240 Name: EXCHANGE_MANAGEMENT_DRAIN_PROFITS_SIGNATURE_INVALID
   1241 Description: The signature affirming the profit drain is invalid.
   1242 HttpStatus: 403
   1243 
   1244 Value: 1825
   1245 Name: EXCHANGE_AML_DECISION_ADD_SIGNATURE_INVALID
   1246 Description: The signature affirming the AML decision is invalid.
   1247 HttpStatus: 403
   1248 
   1249 Value: 1826
   1250 Name: EXCHANGE_AML_DECISION_INVALID_OFFICER
   1251 Description: The AML officer specified is not allowed to make AML decisions right now.
   1252 HttpStatus: 403
   1253 
   1254 Value: 1827
   1255 Name: EXCHANGE_AML_DECISION_MORE_RECENT_PRESENT
   1256 Description: There is a more recent AML decision on file. The decision was rejected as timestamps of AML decisions must be monotonically increasing.
   1257 HttpStatus: 409
   1258 
   1259 Value: 1828
   1260 Name: EXCHANGE_AML_DECISION_UNKNOWN_CHECK
   1261 Description: The AML decision would impose an AML check of a type that is not provided by any KYC provider known to the exchange.
   1262 HttpStatus: 400
   1263 
   1264 Value: 1830
   1265 Name: EXCHANGE_MANAGEMENT_UPDATE_AML_OFFICER_SIGNATURE_INVALID
   1266 Description: The signature affirming the change in the AML officer status is invalid.
   1267 HttpStatus: 403
   1268 
   1269 Value: 1831
   1270 Name: EXCHANGE_MANAGEMENT_AML_OFFICERS_MORE_RECENT_PRESENT
   1271 Description: A more recent decision about the AML officer status is known to the exchange.
   1272 HttpStatus: 409
   1273 
   1274 Value: 1832
   1275 Name: EXCHANGE_MANAGEMENT_CONFLICTING_DENOMINATION_META_DATA
   1276 Description: The exchange already has this denomination key configured, but with different metadata. This should not be possible; contact the developers for support.
   1277 HttpStatus: 409
   1278 
   1279 Value: 1833
   1280 Name: EXCHANGE_MANAGEMENT_CONFLICTING_SIGNKEY_META_DATA
   1281 Description: The exchange already has this signing key configured, but with different metadata. This should not be possible; contact the developers for support.
   1282 HttpStatus: 409
   1283 
   1284 
   1285 
   1286 Value: 1850
   1287 Name: EXCHANGE_PURSE_CREATE_CONFLICTING_META_DATA
   1288 Description: The purse was previously created with different metadata.
   1289 HttpStatus: 409
   1290 
   1291 Value: 1851
   1292 Name: EXCHANGE_PURSE_CREATE_CONFLICTING_CONTRACT_STORED
   1293 Description: The purse was previously created with a different contract.
   1294 HttpStatus: 409
   1295 
   1296 Value: 1852
   1297 Name: EXCHANGE_PURSE_CREATE_COIN_SIGNATURE_INVALID
   1298 Description: A coin signature for a deposit into the purse is invalid.
   1299 HttpStatus: 403
   1300 
   1301 Value: 1853
   1302 Name: EXCHANGE_PURSE_CREATE_EXPIRATION_BEFORE_NOW
   1303 Description: The purse expiration time is in the past.
   1304 HttpStatus: 400
   1305 
   1306 Value: 1854
   1307 Name: EXCHANGE_PURSE_CREATE_EXPIRATION_IS_NEVER
   1308 Description: The purse expiration time is `never`.
   1309 HttpStatus: 400
   1310 
   1311 Value: 1855
   1312 Name: EXCHANGE_PURSE_CREATE_SIGNATURE_INVALID
   1313 Description: The purse signature over the purse metadata is invalid.
   1314 HttpStatus: 403
   1315 
   1316 Value: 1856
   1317 Name: EXCHANGE_PURSE_ECONTRACT_SIGNATURE_INVALID
   1318 Description: The signature over the encrypted contract is invalid.
   1319 HttpStatus: 403
   1320 
   1321 Value: 1857
   1322 Name: EXCHANGE_PURSE_CREATE_EXCHANGE_SIGNATURE_INVALID
   1323 Description: The signature from the exchange over the confirmation is invalid.
   1324 HttpStatus: 0
   1325 
   1326 Value: 1858
   1327 Name: EXCHANGE_PURSE_DEPOSIT_CONFLICTING_META_DATA
   1328 Description: The coin was previously deposited with different metadata.
   1329 HttpStatus: 409
   1330 
   1331 Value: 1859
   1332 Name: EXCHANGE_PURSE_ECONTRACT_CONFLICTING_META_DATA
   1333 Description: The encrypted contract was previously uploaded with different metadata.
   1334 HttpStatus: 409
   1335 
   1336 Value: 1860
   1337 Name: EXCHANGE_CREATE_PURSE_NEGATIVE_VALUE_AFTER_FEE
   1338 Description: The deposited amount is less than the purse fee.
   1339 HttpStatus: 400
   1340 
   1341 Value: 1876
   1342 Name: EXCHANGE_PURSE_MERGE_INVALID_MERGE_SIGNATURE
   1343 Description: The signature using the merge key is invalid.
   1344 HttpStatus: 403
   1345 
   1346 Value: 1877
   1347 Name: EXCHANGE_PURSE_MERGE_INVALID_RESERVE_SIGNATURE
   1348 Description: The signature using the reserve key is invalid.
   1349 HttpStatus: 403
   1350 
   1351 Value: 1878
   1352 Name: EXCHANGE_PURSE_NOT_FULL
   1353 Description: The targeted purse is not yet full and thus cannot be merged. Retrying the request later may succeed.
   1354 HttpStatus: 409
   1355 
   1356 Value: 1879
   1357 Name: EXCHANGE_PURSE_MERGE_EXCHANGE_SIGNATURE_INVALID
   1358 Description: The signature from the exchange over the confirmation is invalid.
   1359 HttpStatus: 0
   1360 
   1361 Value: 1880
   1362 Name: EXCHANGE_MERGE_PURSE_PARTNER_UNKNOWN
   1363 Description: The exchange of the target account is not a partner of this exchange.
   1364 HttpStatus: 404
   1365 
   1366 Value: 1890
   1367 Name: EXCHANGE_MANAGEMENT_ADD_PARTNER_SIGNATURE_INVALID
   1368 Description: The signature affirming the new partner is invalid.
   1369 HttpStatus: 403
   1370 
   1371 Value: 1891
   1372 Name: EXCHANGE_MANAGEMENT_ADD_PARTNER_DATA_CONFLICT
   1373 Description: Conflicting data for the partner already exists with the exchange.
   1374 HttpStatus: 409
   1375 
   1376 
   1377 Value: 1900
   1378 Name: EXCHANGE_AUDITORS_AUDITOR_SIGNATURE_INVALID
   1379 Description: The auditor signature over the denomination metadata is invalid.
   1380 HttpStatus: 403
   1381 
   1382 Value: 1901
   1383 Name: EXCHANGE_AUDITORS_AUDITOR_UNKNOWN
   1384 Description: The auditor that was specified is unknown to this exchange.
   1385 HttpStatus: 412
   1386 
   1387 Value: 1902
   1388 Name: EXCHANGE_AUDITORS_AUDITOR_INACTIVE
   1389 Description: The auditor that was specified is no longer used by this exchange.
   1390 HttpStatus: 410
   1391 
   1392 Value: 1917
   1393 Name: EXCHANGE_KYC_INVALID_FORM_SUBMITTED
   1394 Description: The client submitted the wrong form for the request. This is some invalid use of the API. Please contact technical support.
   1395 HttpStatus: 409
   1396 
   1397 Value: 1918
   1398 Name: EXCHANGE_KYC_GENERIC_AML_PROGRAM_TIMEOUT
   1399 Description: The exchange tried to run an AML program, but that program did not terminate on time. Contact the exchange operator to address the AML program bug or performance issue. If it is not a performance issue, the timeout might have to be increased (requires changes to the source code).
   1400 HttpStatus: 500
   1401 
   1402 Value: 1919
   1403 Name: EXCHANGE_KYC_INFO_AUTHORIZATION_FAILED
   1404 Description: The KYC info access token is not recognized. Hence the request was denied.
   1405 HttpStatus: 403
   1406 
   1407 Value: 1920
   1408 Name: EXCHANGE_KYC_RECURSIVE_RULE_DETECTED
   1409 Description: The exchange got stuck in a long series of likely recursive KYC rules without user input, preventing a timely conclusion. This is a configuration failure. The administrator should investigate.
   1410 HttpStatus: 500
   1411 
   1412 Value: 1921
   1413 Name: EXCHANGE_KYC_AML_FORM_INCOMPLETE
   1414 Description: The submitted KYC data lacks an attribute that is required by the KYC form. Please submit the complete form.
   1415 HttpStatus: 400
   1416 
   1417 Value: 1922
   1418 Name: EXCHANGE_KYC_GENERIC_AML_PROGRAM_GONE
   1419 Description: The request requires an AML program which is no longer configured at the exchange. Contact the exchange operator to address the configuration issue.
   1420 HttpStatus: 500
   1421 
   1422 Value: 1923
   1423 Name: EXCHANGE_KYC_NOT_A_FORM
   1424 Description: The given check is not of type 'form' and thus using this handler for form submission is incorrect.
   1425 HttpStatus: 400
   1426 
   1427 Value: 1924
   1428 Name: EXCHANGE_KYC_GENERIC_CHECK_GONE
   1429 Description: The request requires a check which is no longer configured at the exchange. Contact the exchange operator to address the configuration issue.
   1430 HttpStatus: 500
   1431 
   1432 Value: 1925
   1433 Name: EXCHANGE_KYC_WALLET_SIGNATURE_INVALID
   1434 Description: The signature affirming the wallet's KYC request was invalid.
   1435 HttpStatus: 403
   1436 
   1437 Value: 1926
   1438 Name: EXCHANGE_KYC_PROOF_BACKEND_INVALID_RESPONSE
   1439 Description: The exchange received an unexpected malformed response from its KYC backend.
   1440 HttpStatus: 502
   1441 
   1442 Value: 1927
   1443 Name: EXCHANGE_KYC_PROOF_BACKEND_ERROR
   1444 Description: The backend signaled an unexpected failure.
   1445 HttpStatus: 502
   1446 
   1447 Value: 1928
   1448 Name: EXCHANGE_KYC_PROOF_BACKEND_AUTHORIZATION_FAILED
   1449 Description: The backend signaled an authorization failure.
   1450 HttpStatus: 403
   1451 
   1452 Value: 1929
   1453 Name: EXCHANGE_KYC_PROOF_REQUEST_UNKNOWN
   1454 Description: The exchange is unaware of having made the authorization request.
   1455 HttpStatus: 404
   1456 
   1457 Value: 1930
   1458 Name: EXCHANGE_KYC_CHECK_AUTHORIZATION_FAILED
   1459 Description: The KYC authorization signature was invalid. Hence the request was denied.
   1460 HttpStatus: 403
   1461 
   1462 Value: 1931
   1463 Name: EXCHANGE_KYC_GENERIC_LOGIC_UNKNOWN
   1464 Description: The request used a logic specifier that is not known to the exchange.
   1465 HttpStatus: 404
   1466 
   1467 Value: 1932
   1468 Name: EXCHANGE_KYC_GENERIC_LOGIC_GONE
   1469 Description: The request requires a logic which is no longer configured at the exchange.
   1470 HttpStatus: 500
   1471 
   1472 Value: 1933
   1473 Name: EXCHANGE_KYC_GENERIC_LOGIC_BUG
   1474 Description: The logic plugin had a bug in its interaction with the KYC provider.
   1475 HttpStatus: 500
   1476 
   1477 Value: 1934
   1478 Name: EXCHANGE_KYC_GENERIC_PROVIDER_ACCESS_REFUSED
   1479 Description: The exchange could not process the request with its KYC provider because the provider refused access to the service. This indicates some configuration issue at the Taler exchange operator.
   1480 HttpStatus: 511
   1481 
   1482 Value: 1935
   1483 Name: EXCHANGE_KYC_GENERIC_PROVIDER_TIMEOUT
   1484 Description: There was a timeout in the interaction between the exchange and the KYC provider. The most likely cause is some networking problem. Trying again later might succeed.
   1485 HttpStatus: 504
   1486 
   1487 Value: 1936
   1488 Name: EXCHANGE_KYC_GENERIC_PROVIDER_UNEXPECTED_REPLY
   1489 Description: The KYC provider responded with a status that was completely unexpected by the KYC logic of the exchange.
   1490 HttpStatus: 502
   1491 
   1492 Value: 1937
   1493 Name: EXCHANGE_KYC_GENERIC_PROVIDER_RATE_LIMIT_EXCEEDED
   1494 Description: The rate limit of the exchange at the KYC provider has been exceeded. Trying much later might work.
   1495 HttpStatus: 503
   1496 
   1497 Value: 1938
   1498 Name: EXCHANGE_KYC_WEBHOOK_UNAUTHORIZED
   1499 Description: The request to the webhook lacked proper authorization or authentication data.
   1500 HttpStatus: 401
   1501 
   1502 Value: 1939
   1503 Name: EXCHANGE_KYC_CHECK_REQUEST_UNKNOWN
   1504 Description: The exchange is unaware of the requested payto URI with respect to the KYC status.
   1505 HttpStatus: 404
   1506 
   1507 Value: 1940
   1508 Name: EXCHANGE_KYC_CHECK_AUTHORIZATION_KEY_UNKNOWN
   1509 Description: The exchange has no account public key to check the KYC authorization signature against. Hence the request was denied. The user should do a wire transfer to the exchange with the KYC authorization key in the subject.
   1510 HttpStatus: 409
   1511 
   1512 Value: 1941
   1513 Name: EXCHANGE_KYC_FORM_ALREADY_UPLOADED
   1514 Description: The form was previously uploaded and may only be submitted once. The user should be redirected to the main KYC page to determine whether further steps are required.
   1515 HttpStatus: 409
   1516 
   1517 Value: 1942
   1518 Name: EXCHANGE_KYC_MEASURES_MALFORMED
   1519 Description: The internal state of the exchange specifying KYC measures is malformed. Please contact technical support.
   1520 HttpStatus: 500
   1521 
   1522 Value: 1943
   1523 Name: EXCHANGE_KYC_MEASURE_INDEX_INVALID
   1524 Description: The specified index does not refer to a valid KYC measure. Please check the URL.
   1525 HttpStatus: 404
   1526 
   1527 Value: 1944
   1528 Name: EXCHANGE_KYC_INVALID_LOGIC_TO_CHECK
   1529 Description: The operation is not supported by the selected KYC logic. This is either caused by a configuration change or some invalid use of the API. Please contact technical support.
   1530 HttpStatus: 409
   1531 
   1532 Value: 1945
   1533 Name: EXCHANGE_KYC_AML_PROGRAM_FAILURE
   1534 Description: The AML program failed. This is either caused by a configuration change or a bug. Please contact technical support.
   1535 HttpStatus: 500
   1536 
   1537 Value: 1946
   1538 Name: EXCHANGE_KYC_AML_PROGRAM_MALFORMED_RESULT
   1539 Description: The AML program returned a malformed result. This is a bug. Please contact technical support.
   1540 HttpStatus: 500
   1541 
   1542 Value: 1947
   1543 Name: EXCHANGE_KYC_GENERIC_PROVIDER_INCOMPLETE_REPLY
   1544 Description: The response from the KYC provider lacked required attributes. Please contact technical support.
   1545 HttpStatus: 502
   1546 
   1547 Value: 1948
   1548 Name: EXCHANGE_KYC_GENERIC_PROVIDER_INCOMPLETE_CONTEXT
   1549 Description: The context of the KYC check lacked required fields. This is a bug. Please contact technical support.
   1550 HttpStatus: 500
   1551 
   1552 Value: 1949
   1553 Name: EXCHANGE_KYC_GENERIC_AML_LOGIC_BUG
   1554 Description: The logic plugin had a bug in its AML processing. This is a bug. Please contact technical support.
   1555 HttpStatus: 500
   1556 
   1557 Value: 1950
   1558 Name: EXCHANGE_CONTRACTS_UNKNOWN
   1559 Description: The exchange does not know a contract under the given contract public key.
   1560 HttpStatus: 404
   1561 
   1562 Value: 1951
   1563 Name: EXCHANGE_CONTRACTS_INVALID_CONTRACT_PUB
   1564 Description: The URL does not encode a valid exchange public key in its path.
   1565 HttpStatus: 400
   1566 
   1567 Value: 1952
   1568 Name: EXCHANGE_CONTRACTS_DECRYPTION_FAILED
   1569 Description: The returned encrypted contract did not decrypt.
   1570 HttpStatus: 0
   1571 
   1572 Value: 1953
   1573 Name: EXCHANGE_CONTRACTS_SIGNATURE_INVALID
   1574 Description: The signature on the encrypted contract did not validate.
   1575 HttpStatus: 0
   1576 
   1577 Value: 1954
   1578 Name: EXCHANGE_CONTRACTS_DECODING_FAILED
   1579 Description: The decrypted contract was malformed.
   1580 HttpStatus: 0
   1581 
   1582 Value: 1975
   1583 Name: EXCHANGE_PURSE_DEPOSIT_COIN_SIGNATURE_INVALID
   1584 Description: A coin signature for a deposit into the purse is invalid.
   1585 HttpStatus: 403
   1586 
   1587 Value: 1976
   1588 Name: EXCHANGE_PURSE_DEPOSIT_DECIDED_ALREADY
   1589 Description: It is too late to deposit coins into the purse.
   1590 HttpStatus: 410
   1591 
   1592 Value: 1977
   1593 Name: EXCHANGE_KYC_INFO_BUSY
   1594 Description: The exchange is currently processing the KYC status and is not able to return a response yet.
   1595 HttpStatus: 202
   1596 
   1597 
   1598 Value: 1980
   1599 Name: EXCHANGE_TOTP_KEY_INVALID
   1600 Description: TOTP key is not valid.
   1601 HttpStatus: 0
   1602 
   1603 
   1604 
   1605 
   1606 # 2000 - 2999: Reserved for merchant
   1607 # 2000 - 2099: Reserved for MERCHANT_GENERIC
   1608 
   1609 Value: 2000
   1610 Name: MERCHANT_GENERIC_INSTANCE_UNKNOWN
   1611 Description: The backend could not find the merchant instance specified in the request.
   1612 HttpStatus: 404
   1613 
   1614 Value: 2001
   1615 Name: MERCHANT_GENERIC_HOLE_IN_WIRE_FEE_STRUCTURE
   1616 Description: The start and end-times in the wire fee structure leave a hole. This is not allowed.
   1617 HttpStatus: 0
   1618 
   1619 Value: 2002
   1620 Name: MERCHANT_GENERIC_EXCHANGE_MASTER_KEY_MISMATCH
   1621 Description: The master key of the exchange does not match the one configured for this merchant. As a result, the merchant refuses to do business with this exchange. The administrator should check whether the exchange is configured correctly in the merchant backend.
   1622 HttpStatus: 502
   1623 
   1624 Value: 2003
   1625 Name: MERCHANT_GENERIC_CATEGORY_UNKNOWN
   1626 Description: The product category is not known to the backend.
   1627 HttpStatus: 404
   1628 
   1629 Value: 2004
   1630 Name: MERCHANT_GENERIC_UNIT_UNKNOWN
   1631 Description: The unit referenced in the request is not known to the backend.
   1632 HttpStatus: 404
   1633 
   1634 Value: 2005
   1635 Name: MERCHANT_GENERIC_ORDER_UNKNOWN
   1636 Description: The proposal is not known to the backend.
   1637 HttpStatus: 404
   1638 
   1639 Value: 2006
   1640 Name: MERCHANT_GENERIC_PRODUCT_UNKNOWN
   1641 Description: The order provided to the backend could not be completed because a product specified through inventory data is not in the inventory.
   1642 HttpStatus: 404
   1643 
   1644 Value: 2007
   1645 Name: MERCHANT_GENERIC_REWARD_ID_UNKNOWN
   1646 Description: The reward ID is unknown.  This could happen if the reward has expired.
   1647 HttpStatus: 404
   1648 
   1649 Value: 2008
   1650 Name: MERCHANT_GENERIC_DB_CONTRACT_CONTENT_INVALID
   1651 Description: The contract obtained from the merchant backend was malformed.
   1652 HttpStatus: 500
   1653 
   1654 Value: 2009
   1655 Name: MERCHANT_GENERIC_CONTRACT_HASH_DOES_NOT_MATCH_ORDER
   1656 Description: The order we found does not match the provided contract hash.
   1657 HttpStatus: 403
   1658 
   1659 Value: 2010
   1660 Name: MERCHANT_GENERIC_EXCHANGE_KEYS_FAILURE
   1661 Description: The exchange failed to provide a valid response to the merchant's /keys request.
   1662 HttpStatus: 502
   1663 
   1664 Value: 2011
   1665 Name: MERCHANT_GENERIC_EXCHANGE_TIMEOUT
   1666 Description: The exchange failed to respond to the merchant on time.
   1667 HttpStatus: 504
   1668 
   1669 Value: 2012
   1670 Name: MERCHANT_GENERIC_EXCHANGE_CONNECT_FAILURE
   1671 Description: The merchant failed to talk to the exchange.
   1672 HttpStatus: 500
   1673 
   1674 Value: 2013
   1675 Name: MERCHANT_GENERIC_EXCHANGE_REPLY_MALFORMED
   1676 Description: The exchange returned a malformed response.
   1677 HttpStatus: 502
   1678 
   1679 Value: 2014
   1680 Name: MERCHANT_GENERIC_EXCHANGE_UNEXPECTED_STATUS
   1681 Description: The exchange returned an unexpected response status.
   1682 HttpStatus: 502
   1683 
   1684 Value: 2015
   1685 Name: MERCHANT_GENERIC_UNAUTHORIZED
   1686 Description: The merchant refused the request due to lack of authorization.
   1687 HttpStatus: 401
   1688 
   1689 Value: 2016
   1690 Name: MERCHANT_GENERIC_INSTANCE_DELETED
   1691 Description: The merchant instance specified in the request was deleted.
   1692 HttpStatus: 404
   1693 
   1694 Value: 2017
   1695 Name: MERCHANT_GENERIC_TRANSFER_UNKNOWN
   1696 Description: The backend could not find the inbound wire transfer specified in the request.
   1697 HttpStatus: 404
   1698 
   1699 Value: 2018
   1700 Name: MERCHANT_GENERIC_TEMPLATE_UNKNOWN
   1701 Description: The backend could not find the template with the specified ID because it does not exist.
   1702 HttpStatus: 404
   1703 
   1704 Value: 2019
   1705 Name: MERCHANT_GENERIC_WEBHOOK_UNKNOWN
   1706 Description: The backend could not find the webhook with the specified ID because it does not exist.
   1707 HttpStatus: 404
   1708 
   1709 Value: 2020
   1710 Name: MERCHANT_GENERIC_PENDING_WEBHOOK_UNKNOWN
   1711 Description: The backend could not find the webhook with the specified serial because it does not exist.
   1712 HttpStatus: 404
   1713 
   1714 Value: 2021
   1715 Name: MERCHANT_GENERIC_OTP_DEVICE_UNKNOWN
   1716 Description: The backend could not find the OTP device with the specified ID because it does not exist.
   1717 HttpStatus: 404
   1718 
   1719 Value: 2022
   1720 Name: MERCHANT_GENERIC_ACCOUNT_UNKNOWN
   1721 Description: The account is not known to the backend.
   1722 HttpStatus: 404
   1723 
   1724 Value: 2023
   1725 Name: MERCHANT_GENERIC_H_WIRE_MALFORMED
   1726 Description: The wire hash was malformed.
   1727 HttpStatus: 400
   1728 
   1729 Value: 2024
   1730 Name: MERCHANT_GENERIC_CURRENCY_MISMATCH
   1731 Description: The currency specified in the operation does not work with the current state of the given resource.
   1732 HttpStatus: 409
   1733 
   1734 Value: 2025
   1735 Name: MERCHANT_GENERIC_EXCHANGE_UNTRUSTED
   1736 Description: The exchange specified in the operation is not trusted by this exchange. The client should limit its operation to exchanges enabled by the merchant, or ask the merchant to enable additional exchanges in the configuration.
   1737 HttpStatus: 400
   1738 
   1739 Value: 2026
   1740 Name: MERCHANT_GENERIC_TOKEN_FAMILY_UNKNOWN
   1741 Description: The token family is not known to the backend.
   1742 HttpStatus: 404
   1743 
   1744 Value: 2027
   1745 Name: MERCHANT_GENERIC_TOKEN_KEY_UNKNOWN
   1746 Description: The token family key is not known to the backend. Check the local system time on the client, maybe an expired (or not yet valid) token was used.
   1747 HttpStatus: 404
   1748 
   1749 Value: 2028
   1750 Name: MERCHANT_GENERIC_DONAU_NOT_CONFIGURED
   1751 Description: The merchant backend is not configured to support the DONAU protocol.
   1752 HttpStatus: 501
   1753 
   1754 Value: 2029
   1755 Name: MERCHANT_EXCHANGE_SIGN_PUB_UNKNOWN
   1756 Description: The public signing key given in the exchange response is not in the current keys response.  It is possible that the operation will succeed later after the merchant has downloaded an updated keys response.
   1757 HttpStatus: 0
   1758 
   1759 Value: 2030
   1760 Name: MERCHANT_GENERIC_FEATURE_NOT_AVAILABLE
   1761 Description: The merchant backend does not support the requested feature.
   1762 HttpStatus: 501
   1763 
   1764 Value: 2031
   1765 Name: MERCHANT_GENERIC_MFA_MISSING
   1766 Description: This operation requires multi-factor authorization, but the instance does not have enough configured factors that can be validated. The system administrator must perform this operation.
   1767 HttpStatus: 403
   1768 
   1769 Value: 2032
   1770 Name: MERCHANT_GENERIC_DONAU_INVALID_RESPONSE
   1771 Description: A donation authority (Donau) provided an invalid response. This should be analyzed by the administrator. Trying again later may help.
   1772 HttpStatus: 502
   1773 
   1774 Value: 2033
   1775 Name: MERCHANT_GENERIC_UNIT_BUILTIN
   1776 Description: The unit referenced in the request is built-in and cannot be modified or deleted.
   1777 HttpStatus: 409
   1778 
   1779 Value: 2034
   1780 Name: MERCHANT_GENERIC_REPORT_UNKNOWN
   1781 Description: The report ID provided to the backend is not known to the backend.
   1782 HttpStatus: 404
   1783 
   1784 Value: 2035
   1785 Name: MERCHANT_GENERIC_REPORT_GENERATOR_UNCONFIGURED
   1786 Description: The report ID provided to the backend is not known to the backend.
   1787 HttpStatus: 501
   1788 
   1789 Value: 2036
   1790 Name: MERCHANT_GENERIC_PRODUCT_GROUP_UNKNOWN
   1791 Description: The product group ID provided to the backend is not known to the backend.
   1792 HttpStatus: 404
   1793 
   1794 Value: 2037
   1795 Name: MERCHANT_GENERIC_MONEY_POT_UNKNOWN
   1796 Description: The money pod ID provided to the backend is not known to the backend.
   1797 HttpStatus: 404
   1798 
   1799 Value: 2038
   1800 Name: MERCHANT_GENERIC_SESSION_UNKNOWN
   1801 Description: The session ID provided to the backend is not known to the backend.
   1802 HttpStatus: 404
   1803 
   1804 Value: 2039
   1805 Name: MERCHANT_GENERIC_DONAU_CHARITY_UNKNOWN
   1806 Description: The merchant does not have a charity associated with the selected Donau. As a result, it cannot generate the requested donation receipt. This could happen if the charity was removed from the backend between order creation and payment.
   1807 HttpStatus: 404
   1808 
   1809 Value: 2040
   1810 Name: MERCHANT_GENERIC_EXPECTED_TRANSFER_UNKNOWN
   1811 Description: The merchant does not expect a transfer with the given ID and therefore cannot return any details about it.
   1812 HttpStatus: 404
   1813 
   1814 Value: 2041
   1815 Name: MERCHANT_GENERIC_DONAU_UNKNOWN
   1816 Description: The Donau is not known to the backend.
   1817 HttpStatus: 404
   1818 
   1819 Value: 2042
   1820 Name: MERCHANT_GENERIC_ACCESS_TOKEN_UNKNOWN
   1821 Description: The access token is not known to the backend.
   1822 HttpStatus: 404
   1823 
   1824 Value: 2043
   1825 Name: MERCHANT_GENERIC_FOUNTAIN_UNKNOWN
   1826 Description: The fountain is not known to the backend.
   1827 HttpStatus: 404
   1828 
   1829 Value: 2048
   1830 Name: MERCHANT_GENERIC_NO_TYPST_OR_PDFTK
   1831 Description: One of the binaries needed to generate the PDF is not installed. If this feature is required, the system administrator should make sure Typst and pdftk are both installed.
   1832 HttpStatus: 501
   1833 
   1834 
   1835 
   1836 
   1837 # 2100-2499: public API
   1838 # 2100-2124: get orders endpoint
   1839 
   1840 Value: 2100
   1841 Name: MERCHANT_GET_ORDERS_EXCHANGE_TRACKING_FAILURE
   1842 Description: The exchange failed to provide a valid answer to the tracking request, thus those details are not in the response.
   1843 HttpStatus: 200
   1844 
   1845 Value: 2103
   1846 Name: MERCHANT_GET_ORDERS_ID_EXCHANGE_REQUEST_FAILURE
   1847 Description: The merchant backend failed to construct the request for tracking to the exchange, thus tracking details are not in the response.
   1848 HttpStatus: 500
   1849 
   1850 Value: 2104
   1851 Name: MERCHANT_GET_ORDERS_ID_EXCHANGE_LOOKUP_START_FAILURE
   1852 Description: The merchant backend failed trying to contact the exchange for tracking details, thus those details are not in the response.
   1853 HttpStatus: 500
   1854 
   1855 Value: 2105
   1856 Name: MERCHANT_GET_ORDERS_ID_INVALID_TOKEN
   1857 Description: The claim token used to authenticate the client is invalid for this order.
   1858 HttpStatus: 403
   1859 
   1860 Value: 2106
   1861 Name: MERCHANT_GET_ORDERS_ID_INVALID_CONTRACT_HASH
   1862 Description: The contract terms hash used to authenticate the client is invalid for this order.
   1863 HttpStatus: 403
   1864 
   1865 Value: 2107
   1866 Name: MERCHANT_GET_ORDERS_ID_INVALID_CONTRACT_VERSION
   1867 Description: The contract terms version is not understood by the merchant backend. Most likely the merchant backend was downgraded to a version incompatible with the content of the database.
   1868 HttpStatus: 500
   1869 
   1870 
   1871 # 2125-2149: multi-factor authentication
   1872 
   1873 Value: 2125
   1874 Name: MERCHANT_TAN_CHALLENGE_FAILED
   1875 Description: The provided TAN code is invalid for this challenge.
   1876 HttpStatus: 409
   1877 
   1878 Value: 2126
   1879 Name: MERCHANT_TAN_CHALLENGE_UNKNOWN
   1880 Description: The backend is not aware of the specified MFA challenge.
   1881 HttpStatus: 404
   1882 
   1883 Value: 2127
   1884 Name: MERCHANT_TAN_TOO_MANY_ATTEMPTS
   1885 Description: There have been too many attempts to solve the challenge. A new TAN must be requested.
   1886 HttpStatus: 429
   1887 
   1888 Value: 2128
   1889 Name: MERCHANT_TAN_MFA_HELPER_EXEC_FAILED
   1890 Description: The backend failed to launch a helper process required for the multi-factor authentication step. The backend operator should check the logs and fix the Taler merchant backend configuration.
   1891 HttpStatus: 502
   1892 
   1893 Value: 2129
   1894 Name: MERCHANT_TAN_CHALLENGE_SOLVED
   1895 Description: The challenge was already solved. Therefore, the service refuses to send it again.
   1896 HttpStatus: 410
   1897 
   1898 Value: 2130
   1899 Name: MERCHANT_TAN_TOO_EARLY
   1900 Description: It is too early to request another transmission of the challenge. The client should wait and see if they received the previous challenge.
   1901 HttpStatus: 429
   1902 
   1903 Value: 2131
   1904 Name: MERCHANT_MFA_FORBIDDEN
   1905 Description: There have been too many attempts to solve MFA. The client may attempt again in the future.
   1906 HttpStatus: 403
   1907 
   1908 Value: 2132
   1909 Name: MERCHANT_TAN_ADDRESS_UNUSABLE
   1910 Description: The transmission helper rejected the address configured for this multi-factor authentication step: it is malformed, of the wrong length, not a mobile subscription, unallocated, or blocked. The address should be corrected.
   1911 HttpStatus: 400
   1912 
   1913 Value: 2133
   1914 Name: MERCHANT_TAN_ADDRESS_UNREACHABLE
   1915 Description: The address is valid but the recipient could not be reached: the handset is switched off or out of coverage, or the message expired before delivery. Retrying later may succeed.
   1916 HttpStatus: 503
   1917 
   1918 Value: 2134
   1919 Name: MERCHANT_TAN_HELPER_MISCONFIGURED
   1920 Description: The transmission helper is misconfigured: a required credential is absent, the configured credentials were refused by the provider, or the provider account has insufficient balance. The backend operator should check the logs and fix the Taler merchant backend configuration.
   1921 HttpStatus: 500
   1922 
   1923 # 2150-2199: post orders ID pay endpoint
   1924 
   1925 Value: 2150
   1926 Name: MERCHANT_POST_ORDERS_ID_PAY_INSUFFICIENT_FUNDS
   1927 Description: The exchange responded saying that funds were insufficient (for example, due to double-spending).
   1928 HttpStatus: 409
   1929 
   1930 Value: 2151
   1931 Name: MERCHANT_POST_ORDERS_ID_PAY_DENOMINATION_KEY_NOT_FOUND
   1932 Description: The denomination key used for payment is not listed among the denomination keys of the exchange.
   1933 HttpStatus: 400
   1934 
   1935 Value: 2152
   1936 Name: MERCHANT_POST_ORDERS_ID_PAY_DENOMINATION_KEY_AUDITOR_FAILURE
   1937 Description: The denomination key used for payment is not audited by an auditor approved by the merchant.
   1938 HttpStatus: 400
   1939 
   1940 Value: 2153
   1941 Name: MERCHANT_POST_ORDERS_ID_PAY_AMOUNT_OVERFLOW
   1942 Description: There was an integer overflow totaling up the amounts or deposit fees in the payment.
   1943 HttpStatus: 500
   1944 
   1945 Value: 2154
   1946 Name: MERCHANT_POST_ORDERS_ID_PAY_FEES_EXCEED_PAYMENT
   1947 Description: The deposit fees exceed the total value of the payment.
   1948 HttpStatus: 400
   1949 
   1950 Value: 2155
   1951 Name: MERCHANT_POST_ORDERS_ID_PAY_INSUFFICIENT_DUE_TO_FEES
   1952 Description: After considering deposit and wire fees, the payment is insufficient to satisfy the required amount for the contract.  The client should revisit the logic used to calculate fees it must cover.
   1953 HttpStatus: 400
   1954 
   1955 Value: 2156
   1956 Name: MERCHANT_POST_ORDERS_ID_PAY_PAYMENT_INSUFFICIENT
   1957 Description: Even without considering deposit and wire fees, the payment is insufficient to satisfy the required amount for the contract.
   1958 HttpStatus: 400
   1959 
   1960 Value: 2157
   1961 Name: MERCHANT_POST_ORDERS_ID_PAY_COIN_SIGNATURE_INVALID
   1962 Description: The signature over the contract of one of the coins was invalid.
   1963 HttpStatus: 403
   1964 
   1965 Value: 2158
   1966 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_LOOKUP_FAILED
   1967 Description: The merchant backend failed to find information about the exchange to issue the deposit. This usually happens when the merchant backend's HTTP client logic is not working.
   1968 HttpStatus: 500
   1969 
   1970 Value: 2159
   1971 Name: MERCHANT_POST_ORDERS_ID_PAY_REFUND_DEADLINE_PAST_WIRE_TRANSFER_DEADLINE
   1972 Description: The refund deadline in the contract is after the transfer deadline.
   1973 HttpStatus: 500
   1974 
   1975 Value: 2160
   1976 Name: MERCHANT_POST_ORDERS_ID_PAY_ALREADY_PAID
   1977 Description: The order was already paid (maybe by another wallet).
   1978 HttpStatus: 409
   1979 
   1980 Value: 2161
   1981 Name: MERCHANT_POST_ORDERS_ID_PAY_OFFER_EXPIRED
   1982 Description: The payment is too late, the offer has expired.
   1983 HttpStatus: 410
   1984 
   1985 Value: 2162
   1986 Name: MERCHANT_POST_ORDERS_ID_PAY_MERCHANT_FIELD_MISSING
   1987 Description: The `merchant` field is missing from the proposal data. This is an internal error because the proposal comes from the merchant's own database at this point.
   1988 HttpStatus: 500
   1989 
   1990 Value: 2163
   1991 Name: MERCHANT_POST_ORDERS_ID_PAY_WIRE_HASH_UNKNOWN
   1992 Description: Failed to locate merchant's account information matching the wire hash given in the proposal.
   1993 HttpStatus: 500
   1994 
   1995 Value: 2165
   1996 Name: MERCHANT_POST_ORDERS_ID_PAY_DENOMINATION_DEPOSIT_EXPIRED
   1997 Description: The deposit time for the denomination has expired.
   1998 HttpStatus: 410
   1999 
   2000 Value: 2166
   2001 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_WIRE_FEE_ADDITION_FAILED
   2002 Description: The exchange of the deposited coin charges a wire fee that could not be added to the total (total amount too high).
   2003 HttpStatus: 500
   2004 
   2005 Value: 2167
   2006 Name: MERCHANT_POST_ORDERS_ID_PAY_REFUNDED
   2007 Description: The contract was not fully paid because of refunds. Clients may treat it as paid if, for example, the contract must be executed despite refunds.
   2008 HttpStatus: 402
   2009 
   2010 Value: 2168
   2011 Name: MERCHANT_POST_ORDERS_ID_PAY_REFUNDS_EXCEED_PAYMENTS
   2012 Description: The database indicates that more was refunded than was paid, which should not be possible.
   2013 HttpStatus: 500
   2014 
   2015 Value: 2169
   2016 Name: MERCHANT_PRIVATE_POST_REFUND_AFTER_WIRE_DEADLINE
   2017 Description: The refund request is too late because it is past the wire transfer deadline of the order. The merchant must find a different way to pay back the money to the customer.
   2018 HttpStatus: 410
   2019 
   2020 Value: 2170
   2021 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_FAILED
   2022 Description: The payment failed at the exchange.
   2023 HttpStatus: 502
   2024 
   2025 Value: 2171
   2026 Name: MERCHANT_POST_ORDERS_ID_PAY_AGE_COMMITMENT_MISSING
   2027 Description: The payment required a minimum age but one of the coins (of a denomination with support for age restriction) did not provide any age_commitment.
   2028 HttpStatus: 400
   2029 
   2030 Value: 2172
   2031 Name: MERCHANT_POST_ORDERS_ID_PAY_AGE_COMMITMENT_SIZE_MISMATCH
   2032 Description: The payment required a minimum age but one of the coins provided an age_commitment that contained a wrong number of public keys compared to the number of age groups defined in the denomination of the coin.
   2033 HttpStatus: 400
   2034 
   2035 Value: 2173
   2036 Name: MERCHANT_POST_ORDERS_ID_PAY_AGE_VERIFICATION_FAILED
   2037 Description: The payment required a minimum age, but one of the coins provided a `minimum_age_sig` that could not be verified with the given `age_commitment` for that minimum age.
   2038 HttpStatus: 400
   2039 
   2040 Value: 2174
   2041 Name: MERCHANT_POST_ORDERS_ID_PAY_AGE_COMMITMENT_HASH_MISSING
   2042 Description: The payment required no minimum age but one of the coins (of a denomination with support for age restriction) did not provide the required h_age_commitment.
   2043 HttpStatus: 400
   2044 
   2045 Value: 2175
   2046 Name: MERCHANT_POST_ORDERS_ID_PAY_WIRE_METHOD_UNSUPPORTED
   2047 Description: The exchange does not support the selected bank account of the merchant. Likely the merchant had stale data on the bank accounts of the exchange and thus selected an inappropriate exchange when making the offer.
   2048 HttpStatus: 409
   2049 
   2050 Value: 2176
   2051 Name: MERCHANT_POST_ORDERS_ID_PAY_CHOICE_INDEX_MISSING
   2052 Description: The payment requires the wallet to select a choice from the choices array and pass it in the 'choice_index' field of the request.
   2053 HttpStatus: 400
   2054 
   2055 Value: 2177
   2056 Name: MERCHANT_POST_ORDERS_ID_PAY_CHOICE_INDEX_OUT_OF_BOUNDS
   2057 Description: The 'choice_index' field is invalid.
   2058 HttpStatus: 400
   2059 
   2060 Value: 2178
   2061 Name: MERCHANT_POST_ORDERS_ID_PAY_INPUT_TOKENS_MISMATCH
   2062 Description: The provided 'tokens' array does not match with the required input tokens of the order.
   2063 HttpStatus: 400
   2064 
   2065 Value: 2179
   2066 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_ISSUE_SIG_INVALID
   2067 Description: Invalid token issue signature (blindly signed by merchant) for provided token.
   2068 HttpStatus: 400
   2069 
   2070 Value: 2180
   2071 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_USE_SIG_INVALID
   2072 Description: Invalid token use signature (EdDSA, signed by wallet) for provided token.
   2073 HttpStatus: 400
   2074 
   2075 Value: 2181
   2076 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_COUNT_MISMATCH
   2077 Description: The provided number of tokens does not match the required number.
   2078 HttpStatus: 400
   2079 
   2080 Value: 2182
   2081 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_ENVELOPE_COUNT_MISMATCH
   2082 Description: The provided number of token envelopes does not match the specified number.
   2083 HttpStatus: 400
   2084 
   2085 Value: 2183
   2086 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_INVALID
   2087 Description: Invalid token because it was already used, is expired or not yet valid.
   2088 HttpStatus: 409
   2089 
   2090 Value: 2184
   2091 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_TRANSACTION_LIMIT_VIOLATION
   2092 Description: The payment violates a transaction limit configured at the given exchange. The wallet failed to check exchange limits during coin selection. The wallet developer should investigate.
   2093 HttpStatus: 400
   2094 
   2095 Value: 2185
   2096 Name: MERCHANT_POST_ORDERS_ID_PAY_DONATION_AMOUNT_MISMATCH
   2097 Description: The donation amount provided in the BKPS does not match the amount of the order choice.
   2098 HttpStatus: 409
   2099 
   2100 Value: 2186
   2101 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_LEGALLY_REFUSED
   2102 Description: Some of the exchanges involved refused the request for reasons related to legitimization. The wallet should try with coins of different exchanges. The merchant should check if they have some legitimization process pending at the exchange.
   2103 HttpStatus: 451
   2104 
   2105 Value: 2187
   2106 Name: MERCHANT_POST_ORDERS_ID_PAY_CHOICE_INDEX_MISMATCH
   2107 Description: The order was already paid, but the request specified a different choice. The client should use the choice with which the order was actually paid.
   2108 HttpStatus: 409
   2109 
   2110 # 2200-2224: post orders ID paid endpoint
   2111 
   2112 Value: 2200
   2113 Name: MERCHANT_POST_ORDERS_ID_PAID_CONTRACT_HASH_MISMATCH
   2114 Description: The contract hash does not match the given order ID.
   2115 HttpStatus: 400
   2116 
   2117 Value: 2201
   2118 Name: MERCHANT_POST_ORDERS_ID_PAID_COIN_SIGNATURE_INVALID
   2119 Description: The signature of the merchant is not valid for the given contract hash.
   2120 HttpStatus: 403
   2121 
   2122 # 2225-2249: token families endpoints
   2123 
   2124 Value: 2225
   2125 Name: MERCHANT_POST_TOKEN_FAMILY_CONFLICT
   2126 Description: A token family with this ID but conflicting data exists.
   2127 HttpStatus: 409
   2128 
   2129 Value: 2226
   2130 Name: MERCHANT_PATCH_TOKEN_FAMILY_NOT_FOUND
   2131 Description: The backend is unaware of a token family with the given ID.
   2132 HttpStatus: 404
   2133 
   2134 
   2135 # 2250-2256: post orders ID abort endpoint
   2136 
   2137 Value: 2251
   2138 Name: MERCHANT_POST_ORDERS_ID_ABORT_EXCHANGE_REFUND_FAILED
   2139 Description: The merchant failed to send the exchange the refund request.
   2140 HttpStatus: 500
   2141 
   2142 Value: 2252
   2143 Name: MERCHANT_POST_ORDERS_ID_ABORT_EXCHANGE_LOOKUP_FAILED
   2144 Description: The merchant failed to find the exchange to process the lookup.
   2145 HttpStatus: 500
   2146 
   2147 Value: 2253
   2148 Name: MERCHANT_POST_ORDERS_ID_ABORT_CONTRACT_NOT_FOUND
   2149 Description: The merchant could not find the contract.
   2150 HttpStatus: 404
   2151 
   2152 Value: 2254
   2153 Name: MERCHANT_POST_ORDERS_ID_ABORT_REFUND_REFUSED_PAYMENT_COMPLETE
   2154 Description: The payment was already completed and thus cannot be aborted anymore.
   2155 HttpStatus: 412
   2156 
   2157 Value: 2255
   2158 Name: MERCHANT_POST_ORDERS_ID_ABORT_CONTRACT_HASH_MISSMATCH
   2159 Description: The hash provided by the wallet does not match the order.
   2160 HttpStatus: 403
   2161 
   2162 Value: 2256
   2163 Name: MERCHANT_POST_ORDERS_ID_ABORT_COINS_ARRAY_EMPTY
   2164 Description: The array of coins cannot be empty.
   2165 HttpStatus: 400
   2166 
   2167 
   2168 Value: 2258
   2169 Name: MERCHANT_EXCHANGE_TRANSFERS_AWAITING_KEYS
   2170 Description: The merchant is waiting for the exchange to provide key material before checking the wire transfer.
   2171 HttpStatus: 202
   2172 
   2173 Value: 2259
   2174 Name: MERCHANT_EXCHANGE_TRANSFERS_AWAITING_LIST
   2175 Description: The merchant is waiting for the exchange to provide the list of aggregated transactions.
   2176 HttpStatus: 202
   2177 
   2178 Value: 2260
   2179 Name: MERCHANT_EXCHANGE_TRANSFERS_FATAL_NO_EXCHANGE
   2180 Description: The endpoint indicated in the wire transfer does not belong to a GNU Taler exchange.
   2181 HttpStatus: 200
   2182 
   2183 Value: 2261
   2184 Name: MERCHANT_EXCHANGE_TRANSFERS_FATAL_NOT_FOUND
   2185 Description: The exchange indicated in the wire transfer claims to know nothing about the wire transfer.
   2186 HttpStatus: 0
   2187 
   2188 Value: 2262
   2189 Name: MERCHANT_EXCHANGE_TRANSFERS_RATE_LIMITED
   2190 Description: The interaction with the exchange is delayed due to rate limiting.
   2191 HttpStatus: 202
   2192 
   2193 Value: 2263
   2194 Name: MERCHANT_EXCHANGE_TRANSFERS_TRANSIENT_FAILURE
   2195 Description: The merchant experienced a transient failure while interacting with the exchange.
   2196 HttpStatus: 202
   2197 
   2198 Value: 2264
   2199 Name: MERCHANT_EXCHANGE_TRANSFERS_HARD_FAILURE
   2200 Description: The response from the exchange was unacceptable and should be reviewed with an auditor.
   2201 HttpStatus: 200
   2202 
   2203 
   2204 # 2275-2299: post accounts KYCAUTH endpoint
   2205 
   2206 Value: 2275
   2207 Name: MERCHANT_POST_ACCOUNTS_KYCAUTH_BANK_GATEWAY_UNREACHABLE
   2208 Description: The merchant backend failed to reach the banking gateway to shorten the wire transfer subject. This probably means that the banking gateway of the exchange is currently down. Contact the exchange operator or simply retry again later.
   2209 HttpStatus: 502
   2210 
   2211 Value: 2276
   2212 Name: MERCHANT_POST_ACCOUNTS_EXCHANGE_TOO_OLD
   2213 Description: The merchant backend failed to reach the banking gateway to shorten the wire transfer subject. This probably means that the banking gateway of the exchange is currently down. Contact the exchange operator or simply retry again later.
   2214 HttpStatus: 502
   2215 
   2216 Value: 2277
   2217 Name: MERCHANT_POST_ACCOUNTS_KYCAUTH_EXCHANGE_UNREACHABLE
   2218 Description: The merchant backend failed to reach the specified exchange. This probably means that the exchange is currently down. Contact the exchange operator or simply retry again later.
   2219 HttpStatus: 502
   2220 
   2221 
   2222 
   2223 # 2300-2349: post orders ID claim endpoint
   2224 
   2225 Value: 2300
   2226 Name: MERCHANT_POST_ORDERS_ID_CLAIM_NOT_FOUND
   2227 Description: The order could not be claimed because the backend is unaware of it.
   2228 HttpStatus: 404
   2229 
   2230 Value: 2301
   2231 Name: MERCHANT_POST_ORDERS_ID_CLAIM_ALREADY_CLAIMED
   2232 Description: The order could not be claimed because another client claimed it first.
   2233 HttpStatus: 409
   2234 
   2235 Value: 2302
   2236 Name: MERCHANT_POST_ORDERS_ID_CLAIM_CLIENT_INTERNAL_FAILURE
   2237 Description: The client experienced an internal failure.
   2238 HttpStatus: 0
   2239 
   2240 Value: 2303
   2241 Name: MERCHANT_POST_ORDERS_UNCLAIM_SIGNATURE_INVALID
   2242 Description: The unclaim signature of the wallet is not valid for the given contract hash.
   2243 HttpStatus: 403
   2244 
   2245 
   2246 # 2350-2399: post orders ID refund endpoint
   2247 
   2248 Value: 2350
   2249 Name: MERCHANT_POST_ORDERS_ID_REFUND_SIGNATURE_FAILED
   2250 Description: The backend failed to sign the refund request.
   2251 HttpStatus: 0
   2252 
   2253 
   2254 
   2255 # 2400-2449: reward pickup endpoint
   2256 
   2257 Value: 2400
   2258 Name: MERCHANT_REWARD_PICKUP_UNBLIND_FAILURE
   2259 Description: The client failed to unblind the signature returned by the merchant.
   2260 HttpStatus: 0
   2261 
   2262 
   2263 
   2264 Value: 2403
   2265 Name: MERCHANT_REWARD_PICKUP_EXCHANGE_ERROR
   2266 Description: The exchange returned a failure code for the withdraw operation.
   2267 HttpStatus: 502
   2268 
   2269 
   2270 Value: 2404
   2271 Name: MERCHANT_REWARD_PICKUP_SUMMATION_FAILED
   2272 Description: The merchant failed to add up the amounts to compute the pick up value.
   2273 HttpStatus: 500
   2274 
   2275 Value: 2405
   2276 Name: MERCHANT_REWARD_PICKUP_HAS_EXPIRED
   2277 Description: The reward expired.
   2278 HttpStatus: 410
   2279 
   2280 Value: 2406
   2281 Name: MERCHANT_REWARD_PICKUP_AMOUNT_EXCEEDS_REWARD_REMAINING
   2282 Description: The requested withdraw amount exceeds the amount remaining to be picked up.
   2283 HttpStatus: 400
   2284 
   2285 Value: 2407
   2286 Name: MERCHANT_REWARD_PICKUP_DENOMINATION_UNKNOWN
   2287 Description: The merchant did not find the specified denomination key in the exchange's key set.
   2288 HttpStatus: 409
   2289 
   2290 # 2450-2499: available for future public endpoint
   2291 
   2292 # 2500-2999: private API
   2293 # 2500-2549: order operations
   2294 
   2295 Value: 2500
   2296 Name: MERCHANT_PRIVATE_POST_ORDERS_INSTANCE_CONFIGURATION_LACKS_WIRE
   2297 Description: The merchant instance has no active bank accounts configured. However, at least one bank account must be available to create new orders.
   2298 HttpStatus: 404
   2299 
   2300 Value: 2501
   2301 Name: MERCHANT_PRIVATE_POST_ORDERS_NO_LOCALTIME
   2302 Description: The proposal had no timestamp and the merchant backend failed to obtain the current local time.
   2303 HttpStatus: 500
   2304 
   2305 Value: 2502
   2306 Name: MERCHANT_PRIVATE_POST_ORDERS_PROPOSAL_PARSE_ERROR
   2307 Description: The order provided to the backend could not be parsed; likely some required fields were missing or ill-formed.
   2308 HttpStatus: 400
   2309 
   2310 Value: 2503
   2311 Name: MERCHANT_PRIVATE_POST_ORDERS_ALREADY_EXISTS
   2312 Description: A conflicting order (sharing the same order identifier) already exists at this merchant backend instance.
   2313 HttpStatus: 409
   2314 
   2315 Value: 2504
   2316 Name: MERCHANT_PRIVATE_POST_ORDERS_REFUND_AFTER_WIRE_DEADLINE
   2317 Description: The order creation request is invalid because the given wire deadline is before the refund deadline.
   2318 HttpStatus: 400
   2319 
   2320 Value: 2505
   2321 Name: MERCHANT_PRIVATE_POST_ORDERS_DELIVERY_DATE_IN_PAST
   2322 Description: The order creation request is invalid because the delivery date given is in the past.
   2323 HttpStatus: 400
   2324 
   2325 Value: 2506
   2326 Name: MERCHANT_PRIVATE_POST_ORDERS_WIRE_DEADLINE_IS_NEVER
   2327 Description: The order creation request is invalid because a wire deadline of `never` is not allowed.
   2328 HttpStatus: 400
   2329 
   2330 Value: 2507
   2331 Name: MERCHANT_PRIVATE_POST_ORDERS_PAY_DEADLINE_IN_PAST
   2332 Description: The order creation request is invalid because the given payment deadline is in the past.
   2333 HttpStatus: 400
   2334 
   2335 Value: 2508
   2336 Name: MERCHANT_PRIVATE_POST_ORDERS_REFUND_DEADLINE_IN_PAST
   2337 Description: The order creation request is invalid because the given refund deadline is in the past.
   2338 HttpStatus: 400
   2339 
   2340 Value: 2509
   2341 Name: MERCHANT_PRIVATE_POST_ORDERS_NO_EXCHANGES_FOR_WIRE_METHOD
   2342 Description: The backend does not trust any exchange that would allow funds to be wired to a bank account of this instance using the wire method specified with the order. Exchange bank accounts with mandatory currency conversion are not currently supported. A likely cause is that the `taler-merchant-exchangekeyupdate` process is not running.
   2343 HttpStatus: 409
   2344 
   2345 Value: 2510
   2346 Name: MERCHANT_PRIVATE_PATCH_ORDERS_ID_FORGET_PATH_SYNTAX_INCORRECT
   2347 Description: One of the paths to forget is malformed.
   2348 HttpStatus: 400
   2349 
   2350 Value: 2511
   2351 Name: MERCHANT_PRIVATE_PATCH_ORDERS_ID_FORGET_PATH_NOT_FORGETTABLE
   2352 Description: One of the paths to forget was not marked as forgettable.
   2353 HttpStatus: 409
   2354 
   2355 Value: 2512
   2356 Name: MERCHANT_POST_ORDERS_ID_REFUND_EXCHANGE_TRANSACTION_LIMIT_VIOLATION
   2357 Description: The refund amount would violate a refund transaction limit configured at the given exchange. The merchant should use another way to refund the customer and consult the exchange operator about the applicable regulations.
   2358 HttpStatus: 451
   2359 
   2360 Value: 2513
   2361 Name: MERCHANT_PRIVATE_POST_ORDERS_AMOUNT_EXCEEDS_LEGAL_LIMITS
   2362 Description: The total order amount exceeds the legal transaction limits of the available exchanges, so a customer could not legally make this payment. The merchant may increase its limits by completing legitimization checks with exchange operators.
   2363 HttpStatus: 451
   2364 
   2365 Value: 2514
   2366 Name: MERCHANT_PRIVATE_POST_ORDERS_NO_EXCHANGE_FOR_CURRENCY
   2367 Description: A currency specified to be paid in the contract is not supported by any exchange that this instance can currently use. Possible solutions include (1) specifying a different currency, (2) adding suitable exchange operators to the merchant backend configuration, or (3) satisfying the compliance rules of a configured exchange to begin using that provider's service.
   2368 HttpStatus: 409
   2369 
   2370 
   2371 # 2200-2224: post orders ID paid endpoint
   2372 Value: 2520
   2373 Name: MERCHANT_PRIVATE_DELETE_ORDERS_AWAITING_PAYMENT
   2374 Description: The order provided to the backend could not be deleted because the offer is still valid and awaiting payment. Deletion may work after the offer expires if it remains unpaid.
   2375 HttpStatus: 409
   2376 
   2377 Value: 2521
   2378 Name: MERCHANT_PRIVATE_DELETE_ORDERS_ALREADY_PAID
   2379 Description: The order provided to the backend could not be deleted as the order was already paid.
   2380 HttpStatus: 409
   2381 
   2382 Value: 2525
   2383 Name: MERCHANT_PRIVATE_GET_STATISTICS_REPORT_GRANULARITY_UNAVAILABLE
   2384 Description: The client requested a report granularity that is not available at the backend. Possible solutions include extending the backend code and/or the database statistic triggers to support the desired data granularity. Alternatively, the client could request a different granularity.
   2385 HttpStatus: 410
   2386 
   2387 Value: 2530
   2388 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_INCONSISTENT_AMOUNT
   2389 Description: The requested cumulative Taler refund is inconsistent: it is lower than the amount already awarded, exceeds the amount paid through Taler, or would make the combined Taler and external refunds exceed the full order total.
   2390 HttpStatus: 409
   2391 
   2392 Value: 2531
   2393 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_ORDER_UNPAID
   2394 Description: Only paid orders can be refunded, and the frontend specified an unpaid order to issue a refund for.
   2395 HttpStatus: 409
   2396 
   2397 Value: 2532
   2398 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_NOT_ALLOWED_BY_CONTRACT
   2399 Description: The refund delay was set to 0 and thus no refunds are ever allowed for this order.
   2400 HttpStatus: 403
   2401 
   2402 Value: 2533
   2403 Name: MERCHANT_PRIVATE_POST_ORDERS_TOKEN_FAMILY_SLUG_UNKNOWN
   2404 Description: The token family slug provided in this order could not be found in the merchant database.
   2405 HttpStatus: 404
   2406 
   2407 Value: 2534
   2408 Name: MERCHANT_PRIVATE_POST_ORDERS_TOKEN_FAMILY_NOT_VALID
   2409 Description: A token family referenced in this order is either expired or not valid yet.
   2410 HttpStatus: 409
   2411 
   2412 Value: 2535
   2413 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_COLLECT_NOT_FREE
   2414 Description: The order cannot be collected by the backend as it is not a genuinely free Taler payment: the Taler amount is not zero, or the selected choice has token inputs or outputs and thus requires a customer wallet.
   2415 HttpStatus: 409
   2416 
   2417 Value: 2536
   2418 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_COLLECT_ALREADY_CLAIMED
   2419 Description: The order cannot be collected by the backend as it was already claimed by a customer wallet. The wallet owns the order and must execute the free payment itself.
   2420 HttpStatus: 409
   2421 
   2422 Value: 2537
   2423 Name: MERCHANT_PRIVATE_DELETE_ORDERS_EXTERNALLY_PAID
   2424 Description: The order provided to the backend could not be deleted as it has payments that were settled outside of Taler. Deletion requires an explicit force operation.
   2425 HttpStatus: 409
   2426 
   2427 Value: 2538
   2428 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_EXTERNAL_INCONSISTENT_AMOUNT
   2429 Description: The external refund could not be recorded as the cumulative externally refunded amount would exceed the full order total minus the amount already refunded through Taler.
   2430 HttpStatus: 409
   2431 
   2432 Value: 2539
   2433 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_EXTERNAL_ALREADY_EXISTS
   2434 Description: An external refund with the same identifier was already recorded for this order, but with different details.
   2435 HttpStatus: 409
   2436 
   2437 # 2550-2569: transfer operations
   2438 
   2439 Value: 2550
   2440 Name: MERCHANT_PRIVATE_POST_TRANSFERS_EXCHANGE_UNKNOWN
   2441 Description: The exchange says it does not know this transfer.
   2442 HttpStatus: 502
   2443 
   2444 Value: 2551
   2445 Name: MERCHANT_PRIVATE_POST_TRANSFERS_REQUEST_ERROR
   2446 Description: The backend failed to execute the `/track/transfer` request internally.
   2447 HttpStatus: 502
   2448 
   2449 Value: 2552
   2450 Name: MERCHANT_PRIVATE_POST_TRANSFERS_CONFLICTING_TRANSFERS
   2451 Description: The amount transferred differs between what was submitted and what the exchange claimed.
   2452 HttpStatus: 409
   2453 
   2454 Value: 2553
   2455 Name: MERCHANT_PRIVATE_POST_TRANSFERS_CONFLICTING_REPORTS
   2456 Description: The exchange gave conflicting information about a coin which has been wire transferred.
   2457 HttpStatus: 409
   2458 
   2459 Value: 2554
   2460 Name: MERCHANT_PRIVATE_POST_TRANSFERS_BAD_WIRE_FEE
   2461 Description: The exchange charged a different wire fee than what it originally advertised, and it is higher.
   2462 HttpStatus: 502
   2463 
   2464 Value: 2555
   2465 Name: MERCHANT_PRIVATE_POST_TRANSFERS_ACCOUNT_NOT_FOUND
   2466 Description: The backend did not find the account to which the transfer was made.
   2467 HttpStatus: 404
   2468 
   2469 Value: 2556
   2470 Name: MERCHANT_PRIVATE_DELETE_TRANSFERS_ALREADY_CONFIRMED
   2471 Description: The backend could not delete the transfer because the exchange already responded to the inquiry and the result was integrated.
   2472 HttpStatus: 409
   2473 
   2474 Value: 2557
   2475 Name: MERCHANT_PRIVATE_POST_TRANSFERS_CONFLICTING_SUBMISSION
   2476 Description: The backend could not persist the wire transfer due to the state of the backend. This usually means that a wire transfer with the same wire transfer subject but a different amount was previously submitted to the backend.
   2477 HttpStatus: 409
   2478 
   2479 Value: 2558
   2480 Name: MERCHANT_EXCHANGE_TRANSFERS_TARGET_ACCOUNT_UNKNOWN
   2481 Description: The target bank account given by the exchange is not (or no longer) known at the merchant instance.
   2482 HttpStatus: 0
   2483 
   2484 Value: 2563
   2485 Name: MERCHANT_EXCHANGE_TRANSFERS_CONFLICTING_TRANSFERS
   2486 Description: The amount transferred differs between what was submitted and what the exchange claimed.
   2487 HttpStatus: 0
   2488 
   2489 
   2490 Value: 2570
   2491 Name: MERCHANT_REPORT_GENERATOR_FAILED
   2492 Description: The report ID provided to the backend is not known to the backend.
   2493 HttpStatus: 501
   2494 
   2495 Value: 2571
   2496 Name: MERCHANT_REPORT_FETCH_FAILED
   2497 Description: Failed to fetch the data for the report from the backend.
   2498 HttpStatus: 502
   2499 
   2500 
   2501 # 2600-2649: instance operations
   2502 
   2503 Value: 2600
   2504 Name: MERCHANT_PRIVATE_POST_INSTANCES_ALREADY_EXISTS
   2505 Description: The merchant backend cannot create an instance under the given identifier as one already exists. Use PATCH to modify the existing entry.
   2506 HttpStatus: 409
   2507 
   2508 Value: 2601
   2509 Name: MERCHANT_PRIVATE_POST_INSTANCES_BAD_AUTH
   2510 Description: The merchant backend cannot create an instance because the authentication configuration field is malformed.
   2511 HttpStatus: 400
   2512 
   2513 Value: 2602
   2514 Name: MERCHANT_PRIVATE_POST_INSTANCE_AUTH_BAD_AUTH
   2515 Description: The merchant backend cannot update an instance's authentication settings because the provided authentication settings are malformed.
   2516 HttpStatus: 400
   2517 
   2518 Value: 2603
   2519 Name: MERCHANT_PRIVATE_POST_INSTANCES_PURGE_REQUIRED
   2520 Description: The merchant backend cannot create an instance under the given identifier, the previous one was deleted but must be purged first.
   2521 HttpStatus: 409
   2522 
   2523 Value: 2604
   2524 Name: MERCHANT_PRIVATE_POST_INSTANCE_AUTH_BAD_OLD_PASSWORD
   2525 Description: The merchant backend cannot update an instance's authentication settings because the required current password was missing or did not match.
   2526 HttpStatus: 401
   2527 
   2528 Value: 2625
   2529 Name: MERCHANT_PRIVATE_PATCH_INSTANCES_PURGE_REQUIRED
   2530 Description: The merchant backend cannot update an instance under the given identifier, the previous one was deleted but must be purged first.
   2531 HttpStatus: 409
   2532 
   2533 Value: 2626
   2534 Name: MERCHANT_PRIVATE_ACCOUNT_DELETE_UNKNOWN_ACCOUNT
   2535 Description: The bank account referenced in the requested operation was not found.
   2536 HttpStatus: 404
   2537 
   2538 Value: 2627
   2539 Name: MERCHANT_PRIVATE_ACCOUNT_EXISTS
   2540 Description: The bank account specified in the request already exists at the merchant.
   2541 HttpStatus: 409
   2542 
   2543 Value: 2628
   2544 Name: MERCHANT_PRIVATE_ACCOUNT_NOT_ELIGIBLE_FOR_EXCHANGE
   2545 Description: The bank account specified is not acceptable for this exchange. The exchange either does not support the wire method or does not support another property of the account. Check the exchange account constraints and specify a different bank account if necessary.
   2546 HttpStatus: 409
   2547 
   2548 
   2549 # 2650-2699: product operations
   2550 
   2551 Value: 2650
   2552 Name: MERCHANT_PRIVATE_POST_PRODUCTS_CONFLICT_PRODUCT_EXISTS
   2553 Description: The product ID exists.
   2554 HttpStatus: 409
   2555 
   2556 Value: 2651
   2557 Name: MERCHANT_PRIVATE_POST_CATEGORIES_CONFLICT_CATEGORY_EXISTS
   2558 Description: A category with the same name exists already.
   2559 HttpStatus: 409
   2560 
   2561 Value: 2660
   2562 Name: MERCHANT_PRIVATE_PATCH_PRODUCTS_TOTAL_LOST_REDUCED
   2563 Description: The update would have reduced the total amount of product lost, which is not allowed.
   2564 HttpStatus: 409
   2565 
   2566 Value: 2661
   2567 Name: MERCHANT_PRIVATE_PATCH_PRODUCTS_TOTAL_LOST_EXCEEDS_STOCKS
   2568 Description: The update would have mean that more stocks were lost than what remains from total inventory after sales, which is not allowed.
   2569 HttpStatus: 400
   2570 
   2571 Value: 2662
   2572 Name: MERCHANT_PRIVATE_PATCH_PRODUCTS_TOTAL_STOCKED_REDUCED
   2573 Description: The update would have reduced the total amount of product in stock, which is not allowed.
   2574 HttpStatus: 409
   2575 
   2576 Value: 2663
   2577 Name: MERCHANT_PRIVATE_PATCH_PRODUCTS_TOTAL_SOLD_REDUCED
   2578 Description: The update would have reduced the total amount of product sold, which is not allowed.
   2579 HttpStatus: 409
   2580 
   2581 Value: 2670
   2582 Name: MERCHANT_PRIVATE_POST_PRODUCTS_LOCK_INSUFFICIENT_STOCKS
   2583 Description: The lock request is for more products than we have left (unlocked) in stock.
   2584 HttpStatus: 410
   2585 
   2586 Value: 2680
   2587 Name: MERCHANT_PRIVATE_DELETE_PRODUCTS_CONFLICTING_LOCK
   2588 Description: The deletion request is for a locked product. The product cannot be deleted until the existing offer expires.
   2589 HttpStatus: 409
   2590 
   2591 Value: 2690
   2592 Name: MERCHANT_PRIVATE_PRODUCT_GROUP_CONFLICTING_NAME
   2593 Description: The proposed name for the product group is already in use. The client should select a different name.
   2594 HttpStatus: 409
   2595 
   2596 Value: 2691
   2597 Name: MERCHANT_PRIVATE_MONEY_POT_CONFLICTING_NAME
   2598 Description: The proposed name for the money pot is already in use. The client should select a different name.
   2599 HttpStatus: 409
   2600 
   2601 Value: 2692
   2602 Name: MERCHANT_PRIVATE_MONEY_POT_CONFLICTING_TOTAL
   2603 Description: The total amount in the money pot is different from the amount required by the request. The client should fetch the current pot total and retry with the latest amount to succeed.
   2604 HttpStatus: 409
   2605 
   2606 # 2700-2749: reserve operations
   2607 
   2608 Value: 2700
   2609 Name: MERCHANT_PRIVATE_POST_RESERVES_UNSUPPORTED_WIRE_METHOD
   2610 Description: The requested wire method is not supported by the exchange.
   2611 HttpStatus: 409
   2612 
   2613 Value: 2701
   2614 Name: MERCHANT_PRIVATE_POST_RESERVES_REWARDS_NOT_ALLOWED
   2615 Description: The requested exchange does not allow rewards.
   2616 HttpStatus: 409
   2617 
   2618 Value: 2710
   2619 Name: MERCHANT_PRIVATE_DELETE_RESERVES_NO_SUCH_RESERVE
   2620 Description: The reserve could not be deleted because it is unknown.
   2621 HttpStatus: 404
   2622 
   2623 # 2750-2799: reward authorization
   2624 
   2625 Value: 2750
   2626 Name: MERCHANT_PRIVATE_POST_REWARD_AUTHORIZE_RESERVE_EXPIRED
   2627 Description: The reserve that was used to fund the rewards has expired.
   2628 HttpStatus: 410
   2629 
   2630 Value: 2751
   2631 Name: MERCHANT_PRIVATE_POST_REWARD_AUTHORIZE_RESERVE_UNKNOWN
   2632 Description: The reserve that was used to fund the rewards was not found in the DB.
   2633 HttpStatus: 503
   2634 
   2635 Value: 2752
   2636 Name: MERCHANT_PRIVATE_POST_REWARD_AUTHORIZE_INSUFFICIENT_FUNDS
   2637 Description: The backend knows the instance that was supposed to support the reward, and it was configured for rewardping. However, the funds remaining are insufficient to cover the reward, and the merchant should top up the reserve.
   2638 HttpStatus: 0
   2639 
   2640 Value: 2753
   2641 Name: MERCHANT_PRIVATE_POST_REWARD_AUTHORIZE_RESERVE_NOT_FOUND
   2642 Description: The backend failed to find a reserve needed to authorize the reward.
   2643 HttpStatus: 503
   2644 
   2645 Value: 2800
   2646 Name: MERCHANT_PRIVATE_GET_ORDERS_ID_AMOUNT_ARITHMETIC_FAILURE
   2647 Description: The merchant backend encountered a failure in computing the deposit total.
   2648 HttpStatus: 200
   2649 
   2650 # 2850-2899: template and OTP device operations
   2651 
   2652 Value: 2850
   2653 Name: MERCHANT_PRIVATE_POST_TEMPLATES_CONFLICT_TEMPLATE_EXISTS
   2654 Description: The template ID already exists.
   2655 HttpStatus: 409
   2656 
   2657 Value: 2851
   2658 Name: MERCHANT_PRIVATE_POST_OTP_DEVICES_CONFLICT_OTP_DEVICE_EXISTS
   2659 Description: The OTP device ID already exists.
   2660 HttpStatus: 409
   2661 
   2662 Value: 2852
   2663 Name: MERCHANT_PRIVATE_PATCH_OTP_DEVICES_CONFLICT
   2664 Description: The OTP device algorithm cannot be changed, or the device was concurrently replaced or changed during the update.
   2665 HttpStatus: 409
   2666 
   2667 Value: 2860
   2668 Name: MERCHANT_POST_USING_TEMPLATES_AMOUNT_CONFLICT_TEMPLATES_CONTRACT_AMOUNT
   2669 Description: Amount given in the using template and in the template contract. There is a conflict.
   2670 HttpStatus: 409
   2671 
   2672 Value: 2861
   2673 Name: MERCHANT_POST_USING_TEMPLATES_SUMMARY_CONFLICT_TEMPLATES_CONTRACT_SUBJECT
   2674 Description: Subject given in the using template and in the template contract. There is a conflict.
   2675 HttpStatus: 409
   2676 
   2677 Value: 2862
   2678 Name: MERCHANT_POST_USING_TEMPLATES_NO_AMOUNT
   2679 Description: Amount not given in the using template and in the template contract. There is a conflict.
   2680 HttpStatus: 409
   2681 
   2682 Value: 2863
   2683 Name: MERCHANT_POST_USING_TEMPLATES_NO_SUMMARY
   2684 Description: Subject not given in the using template and in the template contract. There is a conflict.
   2685 HttpStatus: 409
   2686 
   2687 Value: 2864
   2688 Name: MERCHANT_POST_USING_TEMPLATES_WRONG_TYPE
   2689 Description: The selected template has a different type from the one specified in the client request. This may happen if the template was updated since the client last fetched it. The client should refetch the current template and send a request with the correct type.
   2690 HttpStatus: 409
   2691 
   2692 Value: 2865
   2693 Name: MERCHANT_POST_USING_TEMPLATES_WRONG_PRODUCT
   2694 Description: The selected template does not allow one of the specified products to be included in the order. This may happen if the template was updated since the client last fetched it. The client should refetch the current template and send a request with the correct type.
   2695 HttpStatus: 409
   2696 
   2697 Value: 2866
   2698 Name: MERCHANT_POST_USING_TEMPLATES_NO_CURRENCY
   2699 Description: The selected combination of products does not allow the backend to compute a price for the order in any of the supported currencies. This may happen if the template was updated since the last time the client fetched it or if the wallet assembled an unsupported combination of products. The site administrator might want to specify additional prices for products, while the client should re-fetch the current template and send a request with a combination of products for which prices exist in the same currency.
   2700 HttpStatus: 409
   2701 
   2702 
   2703 # 2900-2949: webhook operations
   2704 
   2705 Value: 2900
   2706 Name: MERCHANT_PRIVATE_POST_WEBHOOKS_CONFLICT_WEBHOOK_EXISTS
   2707 Description: The webhook ID elready exists.
   2708 HttpStatus: 409
   2709 
   2710 Value: 2910
   2711 Name: MERCHANT_PRIVATE_POST_PENDING_WEBHOOKS_CONFLICT_PENDING_WEBHOOK_EXISTS
   2712 Description: The webhook serial elready exists.
   2713 HttpStatus: 409
   2714 
   2715 
   2716 # 2950-2999: fountain operations (DD 98)
   2717 
   2718 Value: 2950
   2719 Name: MERCHANT_POST_FOUNTAIN_WITHDRAW_GRANT_UNKNOWN
   2720 Description: A withdrawal entry refers to a token family without a matching grant in the fountain.
   2721 HttpStatus: 409
   2722 
   2723 Value: 2951
   2724 Name: MERCHANT_POST_FOUNTAIN_WITHDRAW_SLOT_OUTSIDE_WINDOW
   2725 Description: The desired token validity time selects an issue key slot outside of the grant's key window.
   2726 HttpStatus: 409
   2727 
   2728 Value: 2952
   2729 Name: MERCHANT_POST_FOUNTAIN_WITHDRAW_LIMIT_EXCEEDED
   2730 Description: The grant's per-period withdrawal limit is exhausted for the requested issue key slot.
   2731 HttpStatus: 429
   2732 
   2733 
   2734 
   2735 
   2736 
   2737 # 3000 - 3999: Reserved for auditor
   2738 # 3000 - 3099: Reserved for AUDITOR_GENERIC
   2739 
   2740 Value: 3001
   2741 Name: AUDITOR_GENERIC_UNAUTHORIZED
   2742 Description: The auditor refused the connection due to a lack of authorization.
   2743 HttpStatus: 401
   2744 
   2745 Value: 3002
   2746 Name: AUDITOR_GENERIC_METHOD_NOT_ALLOWED
   2747 Description: This method is not allowed here.
   2748 HttpStatus: 405
   2749 
   2750 Value: 3100
   2751 Name: AUDITOR_DEPOSIT_CONFIRMATION_SIGNATURE_INVALID
   2752 Description: The signature from the exchange on the deposit confirmation is invalid.
   2753 HttpStatus: 403
   2754 
   2755 Value: 3101
   2756 Name: AUDITOR_EXCHANGE_SIGNING_KEY_REVOKED
   2757 Description: The exchange key used for the signature on the deposit confirmation was revoked.
   2758 HttpStatus: 410
   2759 
   2760 Value: 3102
   2761 Name: AUDITOR_RESOURCE_NOT_FOUND
   2762 Description: The requested resource could not be found.
   2763 HttpStatus: 404
   2764 
   2765 Value: 3103
   2766 Name: AUDITOR_URI_MISSING_PATH_COMPONENT
   2767 Description: The URI is missing a path component.
   2768 HttpStatus: 400
   2769 
   2770 
   2771 # 5000 - 5999: Reserved for bank
   2772 # 5000 - 5099: Reserved for BANK_GENERIC
   2773 
   2774 Value: 5101
   2775 Name: BANK_SAME_ACCOUNT
   2776 Description: Wire transfer attempted with credit and debit party being the same bank account.
   2777 HttpStatus: 400
   2778 
   2779 Value: 5102
   2780 Name: BANK_UNALLOWED_DEBIT
   2781 Description: Wire transfer impossible, due to financial limitation of the party that attempted the payment.
   2782 HttpStatus: 409
   2783 
   2784 Value: 5103
   2785 Name: BANK_NEGATIVE_NUMBER_AMOUNT
   2786 Description: Negative numbers are not allowed (as value and/or fraction) to instantiate an amount object.
   2787 HttpStatus: 400
   2788 
   2789 Value: 5104
   2790 Name: BANK_NUMBER_TOO_BIG
   2791 Description: A too big number was used (as value and/or fraction) to instantiate an amount object.
   2792 HttpStatus: 400
   2793 
   2794 Value: 5106
   2795 Name: BANK_UNKNOWN_ACCOUNT
   2796 Description: The bank account referenced in the requested operation was not found.
   2797 HttpStatus: 404
   2798 
   2799 Value: 5107
   2800 Name: BANK_TRANSACTION_NOT_FOUND
   2801 Description: The transaction referenced in the requested operation (typically a reject operation), was not found.
   2802 HttpStatus: 404
   2803 
   2804 Value: 5108
   2805 Name: BANK_BAD_FORMAT_AMOUNT
   2806 Description: Bank received a malformed amount string.
   2807 HttpStatus: 400
   2808 
   2809 Value: 5109
   2810 Name: BANK_REJECT_NO_RIGHTS
   2811 Description: The client does not own the account credited by the transaction which is to be rejected, so it has no rights do reject it.
   2812 HttpStatus: 403
   2813 
   2814 Value: 5110
   2815 Name: BANK_UNMANAGED_EXCEPTION
   2816 Description: This error code is returned when no known exception types captured the exception.
   2817 HttpStatus: 500
   2818 
   2819 Value: 5111
   2820 Name: BANK_SOFT_EXCEPTION
   2821 Description: This error code is used for all those exceptions that do not really need a specific error code to return to the client. Used for example when a client is trying to register with a unavailable username.
   2822 HttpStatus: 500
   2823 
   2824 Value: 5112
   2825 Name: BANK_TRANSFER_REQUEST_UID_REUSED
   2826 Description: The request UID for a request to transfer funds has already been used, but with different details for the transfer.
   2827 HttpStatus: 409
   2828 
   2829 Value: 5113
   2830 Name: BANK_WITHDRAWAL_OPERATION_RESERVE_SELECTION_CONFLICT
   2831 Description: The withdrawal operation already has a reserve selected.  The current request conflicts with the existing selection.
   2832 HttpStatus: 409
   2833 
   2834 Value: 5114
   2835 Name: BANK_DUPLICATE_RESERVE_PUB_SUBJECT
   2836 Description: The wire transfer subject duplicates an existing reserve public key. But wire transfer subjects must be unique.
   2837 HttpStatus: 409
   2838 
   2839 Value: 5115
   2840 Name: BANK_ANCIENT_TRANSACTION_GONE
   2841 Description: The client requested a transaction that is so far in the past, that it has been forgotten by the bank.
   2842 HttpStatus: 410
   2843 
   2844 Value: 5116
   2845 Name: BANK_ABORT_CONFIRM_CONFLICT
   2846 Description: The client attempted to abort a transaction that was already confirmed.
   2847 HttpStatus: 409
   2848 
   2849 Value: 5117
   2850 Name: BANK_CONFIRM_ABORT_CONFLICT
   2851 Description: The client attempted to confirm a transaction that was already aborted.
   2852 HttpStatus: 409
   2853 
   2854 Value: 5118
   2855 Name: BANK_REGISTER_CONFLICT
   2856 Description: The client attempted to register an account with the same name.
   2857 HttpStatus: 409
   2858 
   2859 Value: 5119
   2860 Name: BANK_POST_WITHDRAWAL_OPERATION_REQUIRED
   2861 Description: The client attempted to confirm a withdrawal operation before the wallet posted the required details.
   2862 HttpStatus: 400
   2863 
   2864 Value: 5120
   2865 Name: BANK_RESERVED_USERNAME_CONFLICT
   2866 Description: The client tried to register a new account under a reserved username (like 'admin' for example).
   2867 HttpStatus: 409
   2868 
   2869 Value: 5121
   2870 Name: BANK_REGISTER_USERNAME_REUSE
   2871 Description: The client tried to register a new account with an username already in use.
   2872 HttpStatus: 409
   2873 
   2874 Value: 5122
   2875 Name: BANK_REGISTER_PAYTO_URI_REUSE
   2876 Description: The client tried to register a new account with a payto:// URI already in use.
   2877 HttpStatus: 409
   2878 
   2879 Value: 5123
   2880 Name: BANK_ACCOUNT_BALANCE_NOT_ZERO
   2881 Description: The client tried to delete an account with a non null balance.
   2882 HttpStatus: 409
   2883 
   2884 Value: 5124
   2885 Name: BANK_UNKNOWN_CREDITOR
   2886 Description: The client tried to create a transaction or an operation that credit an unknown account.
   2887 HttpStatus: 409
   2888 
   2889 Value: 5125
   2890 Name: BANK_UNKNOWN_DEBTOR
   2891 Description: The client tried to create a transaction or an operation that debit an unknown account.
   2892 HttpStatus: 409
   2893 
   2894 Value: 5126
   2895 Name: BANK_ACCOUNT_IS_EXCHANGE
   2896 Description: The client tried to perform an action prohibited for exchange accounts.
   2897 HttpStatus: 409
   2898 
   2899 Value: 5127
   2900 Name: BANK_ACCOUNT_IS_NOT_EXCHANGE
   2901 Description: The client tried to perform an action reserved for exchange accounts.
   2902 HttpStatus: 409
   2903 
   2904 Value: 5128
   2905 Name: BANK_BAD_CONVERSION
   2906 Description: Received currency conversion is wrong.
   2907 HttpStatus: 409
   2908 
   2909 Value: 5129
   2910 Name: BANK_MISSING_TAN_INFO
   2911 Description: The account referenced in this operation is missing tan info for the chosen channel.
   2912 HttpStatus: 409
   2913 
   2914 Value: 5130
   2915 Name: BANK_CONFIRM_INCOMPLETE
   2916 Description: The client attempted to confirm a transaction with incomplete info.
   2917 HttpStatus: 409
   2918 
   2919 Value: 5131
   2920 Name: BANK_TAN_RATE_LIMITED
   2921 Description: The request rate is too high. The server is refusing requests to guard against brute-force attacks.
   2922 HttpStatus: 429
   2923 
   2924 Value: 5132
   2925 Name: BANK_TAN_CHANNEL_NOT_SUPPORTED
   2926 Description: This TAN channel is not supported.
   2927 HttpStatus: 501
   2928 
   2929 Value: 5133
   2930 Name: BANK_TAN_CHANNEL_SCRIPT_FAILED
   2931 Description: Failed to send TAN using the helper script. Either script is not found, or script timeout, or script terminated with a non-successful result.
   2932 HttpStatus: 500
   2933 
   2934 Value: 5134
   2935 Name: BANK_TAN_CHALLENGE_FAILED
   2936 Description: The client's response to the challenge was invalid.
   2937 HttpStatus: 403
   2938 
   2939 Value: 5135
   2940 Name: BANK_NON_ADMIN_PATCH_LEGAL_NAME
   2941 Description: A non-admin user has tried to change their legal name.
   2942 HttpStatus: 409
   2943 
   2944 Value: 5136
   2945 Name: BANK_NON_ADMIN_PATCH_DEBT_LIMIT
   2946 Description: A non-admin user has tried to change their debt limit.
   2947 HttpStatus: 409
   2948 
   2949 Value: 5137
   2950 Name: BANK_NON_ADMIN_PATCH_MISSING_OLD_PASSWORD
   2951 Description: A non-admin user tried to change their password without providing the current password.
   2952 HttpStatus: 409
   2953 
   2954 Value: 5138
   2955 Name: BANK_PATCH_BAD_OLD_PASSWORD
   2956 Description: Provided old password does not match current password.
   2957 HttpStatus: 409
   2958 
   2959 Value: 5139
   2960 Name: BANK_PATCH_ADMIN_EXCHANGE
   2961 Description: An admin user has tried to become an exchange.
   2962 HttpStatus: 409
   2963 
   2964 Value: 5140
   2965 Name: BANK_NON_ADMIN_PATCH_CASHOUT
   2966 Description: A non-admin user has tried to change their cashout account.
   2967 HttpStatus: 409
   2968 
   2969 Value: 5141
   2970 Name: BANK_NON_ADMIN_PATCH_CONTACT
   2971 Description: A non-admin user has tried to change their contact info.
   2972 HttpStatus: 409
   2973 
   2974 Value: 5142
   2975 Name: BANK_ADMIN_CREDITOR
   2976 Description: The client tried to create a transaction that credits the administrator's account.
   2977 HttpStatus: 409
   2978 
   2979 Value: 5143
   2980 Name: BANK_CHALLENGE_NOT_FOUND
   2981 Description: The referenced challenge was not found.
   2982 HttpStatus: 404
   2983 
   2984 Value: 5144
   2985 Name: BANK_TAN_CHALLENGE_EXPIRED
   2986 Description: The referenced challenge has expired.
   2987 HttpStatus: 409
   2988 
   2989 Value: 5145
   2990 Name: BANK_NON_ADMIN_SET_TAN_CHANNEL
   2991 Description: A non-admin user has tried to create an account with 2fa.
   2992 HttpStatus: 409
   2993 
   2994 Value: 5146
   2995 Name: BANK_NON_ADMIN_SET_MIN_CASHOUT
   2996 Description: A non-admin user has tried to set their minimum cashout amount.
   2997 HttpStatus: 409
   2998 
   2999 Value: 5147
   3000 Name: BANK_CONVERSION_AMOUNT_TO_SMALL
   3001 Description: The amount of the currency conversion is less than the minimum allowed.
   3002 HttpStatus: 409
   3003 
   3004 Value: 5148
   3005 Name: BANK_AMOUNT_DIFFERS
   3006 Description: Specified amount will not work for this withdrawal.
   3007 HttpStatus: 409
   3008 
   3009 Value: 5149
   3010 Name: BANK_AMOUNT_REQUIRED
   3011 Description: The backend requires an amount to be specified.
   3012 HttpStatus: 409
   3013 
   3014 Value: 5150
   3015 Name: BANK_PASSWORD_TOO_SHORT
   3016 Description: Provided password is too short.
   3017 HttpStatus: 409
   3018 
   3019 Value: 5151
   3020 Name: BANK_PASSWORD_TOO_LONG
   3021 Description: Provided password is too long.
   3022 HttpStatus: 409
   3023 
   3024 Value: 5152
   3025 Name: BANK_ACCOUNT_LOCKED
   3026 Description: The bank account is locked, and the user cannot authenticate with their password.
   3027 HttpStatus: 403
   3028 
   3029 Value: 5153
   3030 Name: BANK_UPDATE_ABORT_CONFLICT
   3031 Description: The client attempted to update the details of a transaction that was already aborted.
   3032 HttpStatus: 409
   3033 
   3034 Value: 5154
   3035 Name: BANK_TRANSFER_WTID_REUSED
   3036 Description: The wtid for a request to transfer funds has already been used, but with a different request unpaid.
   3037 HttpStatus: 409
   3038 
   3039 Value: 5155
   3040 Name: BANK_NON_ADMIN_SET_CONVERSION_RATE_CLASS
   3041 Description: A non-admin user tried to set their conversion rate class.
   3042 HttpStatus: 409
   3043 
   3044 Value: 5156
   3045 Name: BANK_CONVERSION_RATE_CLASS_UNKNOWN
   3046 Description: The referenced conversion rate class was not found.
   3047 HttpStatus: 409
   3048 
   3049 Value: 5157
   3050 Name: BANK_NAME_REUSE
   3051 Description: The client tried to use an already taken name.
   3052 HttpStatus: 409
   3053 
   3054 Value: 5158
   3055 Name: BANK_UNSUPPORTED_SUBJECT_FORMAT
   3056 Description: This subject format is not supported.
   3057 HttpStatus: 409
   3058 
   3059 Value: 5159
   3060 Name: BANK_DERIVATION_REUSE
   3061 Description: The derived subject is already used.
   3062 HttpStatus: 409
   3063 
   3064 Value: 5160
   3065 Name: BANK_BAD_SIGNATURE
   3066 Description: The provided signature is invalid.
   3067 HttpStatus: 403
   3068 
   3069 Value: 5161
   3070 Name: BANK_OLD_TIMESTAMP
   3071 Description: The provided timestamp is too old.
   3072 HttpStatus: 409
   3073 
   3074 Value: 5162
   3075 Name: BANK_TRANSFER_MAPPING_REUSED
   3076 Description: The `authorization_pub` for a request to transfer funds has already been used for another non-recurring transfer.
   3077 HttpStatus: 409
   3078 
   3079 Value: 5163
   3080 Name: BANK_TRANSFER_MAPPING_UNKNOWN
   3081 Description: The authorization_pub for a request to transfer funds is not currently registered.
   3082 HttpStatus: 409
   3083 
   3084 # 6000 - 6999: Reserved for sync
   3085 # 6000 - 6099: Reserved for SYNC_GENERIC
   3086 
   3087 Value: 6100
   3088 Name: SYNC_ACCOUNT_UNKNOWN
   3089 Description: The sync service failed to find the account in its database.
   3090 HttpStatus: 404
   3091 
   3092 Value: 6101
   3093 Name: SYNC_BAD_IF_NONE_MATCH
   3094 Description: The SHA-512 hash provided in the If-None-Match header is malformed.
   3095 HttpStatus: 400
   3096 
   3097 Value: 6102
   3098 Name: SYNC_BAD_IF_MATCH
   3099 Description: The SHA-512 hash provided in the If-Match header is malformed or missing.
   3100 HttpStatus: 400
   3101 
   3102 Value: 6103
   3103 Name: SYNC_BAD_SYNC_SIGNATURE
   3104 Description: The signature provided in the "Sync-Signature" header is malformed or missing.
   3105 HttpStatus: 400
   3106 
   3107 Value: 6104
   3108 Name: SYNC_INVALID_SIGNATURE
   3109 Description: The signature provided in the "Sync-Signature" header does not match the account, old or new Etags.
   3110 HttpStatus: 403
   3111 
   3112 Value: 6105
   3113 Name: SYNC_MALFORMED_CONTENT_LENGTH
   3114 Description: The "Content-length" field for the upload is not a number.
   3115 HttpStatus: 400
   3116 
   3117 Value: 6106
   3118 Name: SYNC_EXCESSIVE_CONTENT_LENGTH
   3119 Description: The "Content-length" field for the upload is too big based on the server's terms of service.
   3120 HttpStatus: 413
   3121 
   3122 Value: 6107
   3123 Name: SYNC_OUT_OF_MEMORY_ON_CONTENT_LENGTH
   3124 Description: The server is out of memory to handle the upload. Trying again later may succeed.
   3125 HttpStatus: 413
   3126 
   3127 Value: 6108
   3128 Name: SYNC_INVALID_UPLOAD
   3129 Description: The uploaded data does not match the Etag.
   3130 HttpStatus: 400
   3131 
   3132 Value: 6109
   3133 Name: SYNC_PAYMENT_GENERIC_TIMEOUT
   3134 Description: HTTP server experienced a timeout while awaiting promised payment.
   3135 HttpStatus: 408
   3136 
   3137 Value: 6110
   3138 Name: SYNC_PAYMENT_CREATE_BACKEND_ERROR
   3139 Description: The sync service could not set up the payment request with its own backend.
   3140 HttpStatus: 500
   3141 
   3142 Value: 6111
   3143 Name: SYNC_PREVIOUS_BACKUP_UNKNOWN
   3144 Description: The sync service failed to find the backup to be updated in its database.
   3145 HttpStatus: 404
   3146 
   3147 Value: 6112
   3148 Name: SYNC_MISSING_CONTENT_LENGTH
   3149 Description: The "Content-length" field for the upload is missing.
   3150 HttpStatus: 400
   3151 
   3152 Value: 6113
   3153 Name: SYNC_GENERIC_BACKEND_ERROR
   3154 Description: Sync had problems communicating with its payment backend.
   3155 HttpStatus: 502
   3156 
   3157 Value: 6114
   3158 Name: SYNC_GENERIC_BACKEND_TIMEOUT
   3159 Description: Sync experienced a timeout communicating with its payment backend.
   3160 HttpStatus: 504
   3161 
   3162 Value: 6115
   3163 Name: SYNC_CONFLICTING_WRITE
   3164 Description: The provided new content is based on an outdated backup: the previous write was overwritten in the meantime.
   3165 HttpStatus: 409
   3166 
   3167 Value: 6116
   3168 Name: SYNC_INCONSISTENT_BACKUP
   3169 Description: The backup does not form a consistent linked list (e.g. the previous block does not match the given hash).
   3170 HttpStatus: 409
   3171 
   3172 
   3173 
   3174 # 7000 - 7999: Reserved for wallet
   3175 
   3176 Value: 7000
   3177 Name: WALLET_EXCHANGE_PROTOCOL_VERSION_INCOMPATIBLE
   3178 Description: The wallet does not implement a version of the exchange protocol that is compatible with the protocol version of the exchange.
   3179 HttpStatus: 501
   3180 
   3181 Value: 7001
   3182 Name: WALLET_UNEXPECTED_EXCEPTION
   3183 Description: The wallet encountered an unexpected exception.  This is likely a bug in the wallet implementation.
   3184 HttpStatus: 500
   3185 
   3186 Value: 7002
   3187 Name: WALLET_RECEIVED_MALFORMED_RESPONSE
   3188 Description: The wallet received a response from a server, but the response cannot be parsed.
   3189 HttpStatus: 0
   3190 
   3191 Value: 7003
   3192 Name: WALLET_NETWORK_ERROR
   3193 Description: The wallet tried to make a network request, but it received no response.
   3194 HttpStatus: 0
   3195 
   3196 Value: 7004
   3197 Name: WALLET_HTTP_REQUEST_THROTTLED
   3198 Description: The wallet tried to make a network request, but it was throttled.
   3199 HttpStatus: 0
   3200 
   3201 Value: 7005
   3202 Name: WALLET_UNEXPECTED_REQUEST_ERROR
   3203 Description: The wallet made a request to a service, but received an error response it does not know how to handle.
   3204 HttpStatus: 0
   3205 
   3206 Value: 7006
   3207 Name: WALLET_EXCHANGE_DENOMINATIONS_INSUFFICIENT
   3208 Description: The denominations offered by the exchange are insufficient.  Likely the exchange is badly configured or not maintained.
   3209 HttpStatus: 0
   3210 
   3211 Value: 7007
   3212 Name: WALLET_CORE_API_OPERATION_UNKNOWN
   3213 Description: The wallet does not support the operation requested by a client.
   3214 HttpStatus: 0
   3215 
   3216 Value: 7008
   3217 Name: WALLET_INVALID_TALER_PAY_URI
   3218 Description: The given taler://pay URI is invalid.
   3219 HttpStatus: 0
   3220 
   3221 Value: 7009
   3222 Name: WALLET_EXCHANGE_COIN_SIGNATURE_INVALID
   3223 Description: The signature on a coin by the exchange's denomination key is invalid after unblinding it.
   3224 HttpStatus: 0
   3225 
   3226 Value: 7011
   3227 Name: WALLET_CORE_NOT_AVAILABLE
   3228 Description: The wallet core service is not available.
   3229 HttpStatus: 0
   3230 
   3231 Value: 7012
   3232 Name: WALLET_WITHDRAWAL_OPERATION_ABORTED_BY_BANK
   3233 Description: The bank aborted a withdrawal operation, so the withdrawal cannot complete.
   3234 HttpStatus: 0
   3235 
   3236 Value: 7013
   3237 Name: WALLET_HTTP_REQUEST_GENERIC_TIMEOUT
   3238 Description: An HTTP request made by the wallet timed out.
   3239 HttpStatus: 0
   3240 
   3241 Value: 7014
   3242 Name: WALLET_ORDER_ALREADY_CLAIMED
   3243 Description: The order has already been claimed by another wallet.
   3244 HttpStatus: 0
   3245 
   3246 Value: 7015
   3247 Name: WALLET_WITHDRAWAL_GROUP_INCOMPLETE
   3248 Description: A group of withdrawal operations (typically for the same reserve at the same exchange) has errors and will be tried again later.
   3249 HttpStatus: 0
   3250 
   3251 Value: 7016
   3252 Name: WALLET_REWARD_COIN_SIGNATURE_INVALID
   3253 Description: The signature on a coin by the exchange's denomination key (obtained through the merchant via a reward) is invalid after unblinding it.
   3254 HttpStatus: 0
   3255 
   3256 Value: 7017
   3257 Name: WALLET_BANK_INTEGRATION_PROTOCOL_VERSION_INCOMPATIBLE
   3258 Description: The wallet does not implement a version of the bank integration API that is compatible with the version offered by the bank.
   3259 HttpStatus: 0
   3260 
   3261 Value: 7018
   3262 Name: WALLET_CONTRACT_TERMS_BASE_URL_MISMATCH
   3263 Description: The wallet processed a taler://pay URI, but the merchant base URL in the downloaded contract terms does not match the merchant base URL derived from the URI.
   3264 HttpStatus: 0
   3265 
   3266 Value: 7019
   3267 Name: WALLET_CONTRACT_TERMS_SIGNATURE_INVALID
   3268 Description: The merchant's signature on the contract terms is invalid.
   3269 HttpStatus: 0
   3270 
   3271 Value: 7020
   3272 Name: WALLET_CONTRACT_TERMS_MALFORMED
   3273 Description: The contract terms given by the merchant are malformed.
   3274 HttpStatus: 0
   3275 
   3276 Value: 7021
   3277 Name: WALLET_PENDING_OPERATION_FAILED
   3278 Description: A pending operation failed, so the request cannot be completed.
   3279 HttpStatus: 0
   3280 
   3281 Value: 7022
   3282 Name: WALLET_PAY_MERCHANT_SERVER_ERROR
   3283 Description: A payment was attempted, but the merchant had an internal server error (5xx).
   3284 HttpStatus: 0
   3285 
   3286 Value: 7023
   3287 Name: WALLET_CRYPTO_WORKER_ERROR
   3288 Description: The crypto worker failed.
   3289 HttpStatus: 0
   3290 
   3291 Value: 7024
   3292 Name: WALLET_CRYPTO_WORKER_BAD_REQUEST
   3293 Description: The crypto worker received a bad request.
   3294 HttpStatus: 0
   3295 
   3296 Value: 7025
   3297 Name: WALLET_WITHDRAWAL_KYC_REQUIRED
   3298 Description: A KYC step is required before withdrawal can proceed.
   3299 HttpStatus: 0
   3300 
   3301 Value: 7026
   3302 Name: WALLET_DEPOSIT_GROUP_INSUFFICIENT_BALANCE
   3303 Description: The wallet does not have sufficient balance to create a deposit group.
   3304 HttpStatus: 0
   3305 
   3306 Value: 7027
   3307 Name: WALLET_PEER_PUSH_PAYMENT_INSUFFICIENT_BALANCE
   3308 Description: The wallet does not have sufficient balance to create a peer push payment.
   3309 HttpStatus: 0
   3310 
   3311 Value: 7028
   3312 Name: WALLET_PEER_PULL_PAYMENT_INSUFFICIENT_BALANCE
   3313 Description: The wallet does not have sufficient balance to pay for an invoice.
   3314 HttpStatus: 0
   3315 
   3316 Value: 7029
   3317 Name: WALLET_REFRESH_GROUP_INCOMPLETE
   3318 Description: A group of refresh operations has errors and will be tried again later.
   3319 HttpStatus: 0
   3320 
   3321 Value: 7030
   3322 Name: WALLET_EXCHANGE_BASE_URL_MISMATCH
   3323 Description: The exchange's self-reported base URL does not match the one that the wallet is using.
   3324 HttpStatus: 0
   3325 
   3326 Value: 7031
   3327 Name: WALLET_ORDER_ALREADY_PAID
   3328 Description: The order has already been paid by another wallet.
   3329 HttpStatus: 0
   3330 
   3331 Value: 7032
   3332 Name: WALLET_EXCHANGE_UNAVAILABLE
   3333 Description: An exchange that is required for some request is currently not available.
   3334 HttpStatus: 0
   3335 
   3336 Value: 7033
   3337 Name: WALLET_EXCHANGE_ENTRY_USED
   3338 Description: An exchange entry is still used by the exchange, so it cannot be deleted without purging.
   3339 HttpStatus: 0
   3340 
   3341 Value: 7034
   3342 Name: WALLET_DB_UNAVAILABLE
   3343 Description: The wallet database is unavailable and the wallet thus is not operational.
   3344 HttpStatus: 0
   3345 
   3346 Value: 7035
   3347 Name: WALLET_TALER_URI_MALFORMED
   3348 Description: A `taler://` URI is malformed and cannot be parsed.
   3349 HttpStatus: 0
   3350 
   3351 Value: 7036
   3352 Name: WALLET_CORE_REQUEST_CANCELLED
   3353 Description: A wallet-core request was cancelled and therefore cannot provide a response.
   3354 HttpStatus: 0
   3355 
   3356 Value: 7037
   3357 Name: WALLET_EXCHANGE_TOS_NOT_ACCEPTED
   3358 Description: A wallet-core request failed because the user needs to first accept the exchange's terms of service.
   3359 HttpStatus: 0
   3360 
   3361 Value: 7038
   3362 Name: WALLET_EXCHANGE_ENTRY_UPDATE_CONFLICT
   3363 Description: An exchange entry could not be updated, as the exchange's new details conflict with the new details.
   3364 HttpStatus: 0
   3365 
   3366 Value: 7039
   3367 Name: WALLET_EXCHANGE_ENTRY_OUTDATED
   3368 Description: The wallet's information about the exchange is outdated.
   3369 HttpStatus: 0
   3370 
   3371 Value: 7040
   3372 Name: WALLET_PAY_MERCHANT_KYC_MISSING
   3373 Description: The merchant needs to do KYC first, the payment could not be completed.
   3374 HttpStatus: 0
   3375 
   3376 Value: 7041
   3377 Name: WALLET_PEER_PULL_DEBIT_PURSE_GONE
   3378 Description: A peer-pull-debit transaction was aborted because the exchange reported the purse as gone.
   3379 HttpStatus: 0
   3380 
   3381 Value: 7042
   3382 Name: WALLET_TRANSACTION_ABORTED_BY_USER
   3383 Description: A transaction was aborted on explicit request by the user.
   3384 HttpStatus: 0
   3385 
   3386 Value: 7043
   3387 Name: WALLET_TRANSACTION_ABANDONED_BY_USER
   3388 Description: A transaction was abandoned on explicit request by the user.
   3389 HttpStatus: 0
   3390 
   3391 Value: 7044
   3392 Name: WALLET_PAY_MERCHANT_ORDER_GONE
   3393 Description: A payment was attempted, but the merchant claims the order is gone (likely expired).
   3394 HttpStatus: 0
   3395 
   3396 Value: 7045
   3397 Name: WALLET_EXCHANGE_ENTRY_NOT_FOUND
   3398 Description: The wallet does not have an entry for the requested exchange.
   3399 HttpStatus: 0
   3400 
   3401 Value: 7046
   3402 Name: WALLET_REQUEST_TRANSACTION_STATE_UNSUPPORTED
   3403 Description: The wallet is not able to process the request due to the transaction's state.
   3404 HttpStatus: 0
   3405 
   3406 Value: 7047
   3407 Name: WALLET_TRANSACTION_PROTOCOL_VIOLATION
   3408 Description: A transaction could not be processed due to an unrecoverable protocol violation.
   3409 HttpStatus: 0
   3410 
   3411 Value: 7048
   3412 Name: WALLET_CORE_API_BAD_REQUEST
   3413 Description: A parameter in the request is malformed or missing.
   3414 HttpStatus: 0
   3415 
   3416 Value: 7049
   3417 Name: WALLET_MERCHANT_ORDER_NOT_FOUND
   3418 Description: The order could not be found. Maybe the merchant deleted it.
   3419 HttpStatus: 0
   3420 
   3421 Value: 7050
   3422 Name: WALLET_PAY_MERCHANT_INSUFFICIENT_BALANCE
   3423 Description: The wallet's balance for paying a merchant is insufficient.
   3424 HttpStatus: 0
   3425 
   3426 Value: 7051
   3427 Name: WALLET_PURCHASE_NOT_FOUND
   3428 Description: The wallet does not have a purchase for the requested order.
   3429 HttpStatus: 0
   3430 
   3431 Value: 7052
   3432 Name: WALLET_TRANSACTION_NOT_FOUND
   3433 Description: The wallet does not have a transaction with the requested transaction identifier.
   3434 HttpStatus: 0
   3435 
   3436 Value: 7053
   3437 Name: WALLET_TRANSACTION_ACTION_UNSUPPORTED
   3438 Description: The requested action is not supported for this type of transaction.
   3439 HttpStatus: 0
   3440 
   3441 Value: 7054
   3442 Name: WALLET_KYC_LIMIT_EXCEEDED
   3443 Description: The operation would exceed a limit imposed by the exchange that the user cannot raise by completing a KYC process.
   3444 HttpStatus: 0
   3445 
   3446 Value: 7055
   3447 Name: WALLET_NO_SUITABLE_EXCHANGE
   3448 Description: The wallet does not know an exchange that can be used for this operation. Check that an exchange for the requested currency has been added to the wallet.
   3449 HttpStatus: 0
   3450 
   3451 Value: 7056
   3452 Name: WALLET_BANK_ACCOUNT_NOT_FOUND
   3453 Description: The wallet does not have a known bank account with the requested identifier.
   3454 HttpStatus: 0
   3455 
   3456 Value: 7057
   3457 Name: WALLET_PEER_CONTRACT_NOT_FOUND
   3458 Description: The exchange does not know the contract of this peer-to-peer payment. It may have expired.
   3459 HttpStatus: 0
   3460 
   3461 Value: 7058
   3462 Name: WALLET_PEER_PUSH_CREDIT_PURSE_GONE
   3463 Description: The purse of this peer-to-peer push payment is gone. The sender likely aborted the payment.
   3464 HttpStatus: 0
   3465 
   3466 Value: 7059
   3467 Name: WALLET_PEER_PULL_DEBIT_ALREADY_PAID
   3468 Description: This invoice has already been paid, possibly by another wallet.
   3469 HttpStatus: 0
   3470 
   3471 Value: 7060
   3472 Name: WALLET_TOKENS_IN_USE
   3473 Description: The tokens can not be deleted, as at least one of them is currently being used in a transaction.
   3474 HttpStatus: 0
   3475 
   3476 Value: 7061
   3477 Name: WALLET_DB_BACKEND_UNSUPPORTED
   3478 Description: The operation is not supported by the database backend that the wallet is currently running on.
   3479 HttpStatus: 0
   3480 
   3481 Value: 7062
   3482 Name: WALLET_MAILBOX_UNAVAILABLE
   3483 Description: The wallet could not use the mailbox service.
   3484 HttpStatus: 0
   3485 
   3486 Value: 7063
   3487 Name: WALLET_ALIAS_REGISTRATION_FAILED
   3488 Description: The wallet could not register an alias with the directory service.
   3489 HttpStatus: 0
   3490 
   3491 Value: 7064
   3492 Name: WALLET_CONTRACT_TERMS_UNSUPPORTED
   3493 Description: The contract terms use a feature that this version of the wallet does not support. Updating the wallet may help.
   3494 HttpStatus: 0
   3495 
   3496 Value: 7065
   3497 Name: WALLET_EXCHANGE_SIGNATURE_INVALID
   3498 Description: The exchange served data that is not correctly signed by its master key. The wallet refuses to use this exchange.
   3499 HttpStatus: 0
   3500 
   3501 Value: 7066
   3502 Name: WALLET_EXCHANGE_KEYS_NOT_ACCEPTED
   3503 Description: The exchange presents a master public key or currency that the user has not accepted yet. The operation was refused.
   3504 HttpStatus: 0
   3505 
   3506 Value: 7067
   3507 Name: WALLET_EXCHANGE_NO_KEY_CHANGE_PENDING
   3508 Description: The wallet was asked to accept or reject a change of the exchange's keys, but the exchange does not present a new key set.
   3509 HttpStatus: 0
   3510 
   3511 Value: 7068
   3512 Name: WALLET_EXCHANGE_KEY_CHANGE_MISMATCH
   3513 Description: The key set that was confirmed is not the one that the exchange currently presents.
   3514 HttpStatus: 0
   3515 
   3516 Value: 7069
   3517 Name: WALLET_PEER_PUSH_PAYMENT_QUOTE_CHANGED
   3518 Description: The values of a reviewed peer push payment changed before confirmation. The caller must prepare and show the payment again.
   3519 HttpStatus: 0
   3520 
   3521 # 8000 - 8499: Reserved for Anastasis
   3522 
   3523 Value: 8000
   3524 Name: ANASTASIS_GENERIC_BACKEND_TIMEOUT
   3525 Description: The service encountered a timeout with its payment backend.
   3526 HttpStatus: 504
   3527 
   3528 Value: 8001
   3529 Name: ANASTASIS_GENERIC_INVALID_PAYMENT_REQUEST
   3530 Description: The backend requested payment, but the request is malformed.
   3531 HttpStatus: 0
   3532 
   3533 Value: 8002
   3534 Name: ANASTASIS_GENERIC_BACKEND_ERROR
   3535 Description: The backend received an unexpected response from the payment processor.
   3536 HttpStatus: 502
   3537 
   3538 Value: 8003
   3539 Name: ANASTASIS_GENERIC_MISSING_CONTENT_LENGTH
   3540 Description: The "Content-length" field for the upload is missing.
   3541 HttpStatus: 400
   3542 
   3543 Value: 8004
   3544 Name: ANASTASIS_GENERIC_MALFORMED_CONTENT_LENGTH
   3545 Description: The "Content-length" field for the upload is malformed.
   3546 HttpStatus: 400
   3547 
   3548 Value: 8005
   3549 Name: ANASTASIS_GENERIC_ORDER_CREATE_BACKEND_ERROR
   3550 Description: The backend failed to setup an order with the payment processor.
   3551 HttpStatus: 502
   3552 
   3553 Value: 8006
   3554 Name: ANASTASIS_GENERIC_PAYMENT_CHECK_UNAUTHORIZED
   3555 Description: The backend was not authorized to check for payment with the payment processor.
   3556 HttpStatus: 500
   3557 
   3558 Value: 8007
   3559 Name: ANASTASIS_GENERIC_PAYMENT_CHECK_START_FAILED
   3560 Description: The backend could not check payment status with the payment processor.
   3561 HttpStatus: 500
   3562 
   3563 Value: 8008
   3564 Name: ANASTASIS_GENERIC_PROVIDER_UNREACHABLE
   3565 Description: The Anastasis provider could not be reached.
   3566 HttpStatus: 0
   3567 
   3568 Value: 8009
   3569 Name: ANASTASIS_PAYMENT_GENERIC_TIMEOUT
   3570 Description: HTTP server experienced a timeout while awaiting promised payment.
   3571 HttpStatus: 408
   3572 
   3573 
   3574 Value: 8108
   3575 Name: ANASTASIS_TRUTH_UNKNOWN
   3576 Description: The key share is unknown to the provider.
   3577 HttpStatus: 404
   3578 
   3579 Value: 8109
   3580 Name: ANASTASIS_TRUTH_AUTHORIZATION_METHOD_NO_LONGER_SUPPORTED
   3581 Description: The authorization method used for the key share is no longer supported by the provider.
   3582 HttpStatus: 500
   3583 
   3584 Value: 8110
   3585 Name: ANASTASIS_TRUTH_CHALLENGE_RESPONSE_REQUIRED
   3586 Description: The client needs to respond to the challenge.
   3587 HttpStatus: 403
   3588 
   3589 Value: 8111
   3590 Name: ANASTASIS_TRUTH_CHALLENGE_FAILED
   3591 Description: The client's response to the challenge was invalid.
   3592 HttpStatus: 403
   3593 
   3594 Value: 8112
   3595 Name: ANASTASIS_TRUTH_CHALLENGE_UNKNOWN
   3596 Description: The backend is not aware of having issued the provided challenge code. Either this is the wrong code, or it has expired.
   3597 HttpStatus: 404
   3598 
   3599 Value: 8114
   3600 Name: ANASTASIS_TRUTH_AUTHORIZATION_START_FAILED
   3601 Description: The backend failed to initiate the authorization process.
   3602 HttpStatus: 500
   3603 
   3604 Value: 8115
   3605 Name: ANASTASIS_TRUTH_KEY_SHARE_GONE
   3606 Description: The authorization succeeded, but the key share is no longer available.
   3607 HttpStatus: 404
   3608 
   3609 Value: 8116
   3610 Name: ANASTASIS_TRUTH_ORDER_DISAPPEARED
   3611 Description: The backend no longer knows about the order that the client was asked to pay for.
   3612 HttpStatus: 502
   3613 
   3614 Value: 8117
   3615 Name: ANASTASIS_TRUTH_BACKEND_EXCHANGE_BAD
   3616 Description: The backend itself reported a bad exchange interaction.
   3617 HttpStatus: 502
   3618 
   3619 Value: 8118
   3620 Name: ANASTASIS_TRUTH_UNEXPECTED_PAYMENT_STATUS
   3621 Description: The backend reported an unexpected payment status.
   3622 HttpStatus: 500
   3623 
   3624 Value: 8119
   3625 Name: ANASTASIS_TRUTH_PAYMENT_CREATE_BACKEND_ERROR
   3626 Description: The backend failed to setup the order for payment.
   3627 HttpStatus: 502
   3628 
   3629 Value: 8120
   3630 Name: ANASTASIS_TRUTH_DECRYPTION_FAILED
   3631 Description: The decryption of the key share failed with the provided key.
   3632 HttpStatus: 400
   3633 
   3634 Value: 8121
   3635 Name: ANASTASIS_TRUTH_RATE_LIMITED
   3636 Description: The request rate is too high. The server is refusing requests to guard against brute-force attacks.
   3637 HttpStatus: 429
   3638 
   3639 Value: 8123
   3640 Name: ANASTASIS_TRUTH_CHALLENGE_WRONG_METHOD
   3641 Description: A request to issue a challenge is not valid for this authentication method.
   3642 HttpStatus: 400
   3643 
   3644 Value: 8150
   3645 Name: ANASTASIS_TRUTH_UPLOAD_UUID_EXISTS
   3646 Description: The backend failed to store the key share because the UUID is already in use.
   3647 HttpStatus: 409
   3648 
   3649 Value: 8151
   3650 Name: ANASTASIS_TRUTH_UPLOAD_METHOD_NOT_SUPPORTED
   3651 Description: The backend failed to store the key share because the authorization method is not supported.
   3652 HttpStatus: 400
   3653 
   3654 
   3655 
   3656 Value: 8200
   3657 Name: ANASTASIS_SMS_PHONE_INVALID
   3658 Description: The provided phone number is not an acceptable number.
   3659 HttpStatus: 409
   3660 
   3661 Value: 8201
   3662 Name: ANASTASIS_SMS_HELPER_EXEC_FAILED
   3663 Description: Failed to run the SMS transmission helper process.
   3664 HttpStatus: 500
   3665 
   3666 Value: 8202
   3667 Name: ANASTASIS_SMS_HELPER_COMMAND_FAILED
   3668 Description: Provider failed to send SMS. Helper terminated with a non-successful result.
   3669 HttpStatus: 500
   3670 
   3671 
   3672 Value: 8210
   3673 Name: ANASTASIS_EMAIL_INVALID
   3674 Description: The provided email address is not an acceptable address.
   3675 HttpStatus: 409
   3676 
   3677 Value: 8211
   3678 Name: ANASTASIS_EMAIL_HELPER_EXEC_FAILED
   3679 Description: Failed to run the email transmission helper process.
   3680 HttpStatus: 500
   3681 
   3682 Value: 8212
   3683 Name: ANASTASIS_EMAIL_HELPER_COMMAND_FAILED
   3684 Description: The provider failed to send email. The helper terminated with a non-successful result.
   3685 HttpStatus: 500
   3686 
   3687 
   3688 Value: 8220
   3689 Name: ANASTASIS_POST_INVALID
   3690 Description: The provided postal address is not an acceptable address.
   3691 HttpStatus: 409
   3692 
   3693 Value: 8221
   3694 Name: ANASTASIS_POST_HELPER_EXEC_FAILED
   3695 Description: Failed to run the mail transmission helper process.
   3696 HttpStatus: 500
   3697 
   3698 Value: 8222
   3699 Name: ANASTASIS_POST_HELPER_COMMAND_FAILED
   3700 Description: Provider failed to send mail. Helper terminated with a non-successful result.
   3701 HttpStatus: 500
   3702 
   3703 
   3704 Value: 8230
   3705 Name: ANASTASIS_IBAN_INVALID
   3706 Description: The provided IBAN address is not an acceptable IBAN.
   3707 HttpStatus: 409
   3708 
   3709 Value: 8231
   3710 Name: ANASTASIS_IBAN_MISSING_TRANSFER
   3711 Description: The provider has not yet received the IBAN wire transfer authorizing the disclosure of the key share.
   3712 HttpStatus: 403
   3713 
   3714 
   3715 Value: 8240
   3716 Name: ANASTASIS_TOTP_KEY_MISSING
   3717 Description: The backend did not find a TOTP key in the data provided.
   3718 HttpStatus: 409
   3719 
   3720 Value: 8241
   3721 Name: ANASTASIS_TOTP_KEY_INVALID
   3722 Description: The key provided does not satisfy the format restrictions for an Anastasis TOTP key.
   3723 HttpStatus: 409
   3724 
   3725 Value: 8250
   3726 Name: ANASTASIS_ADDRESS_UNREACHABLE
   3727 Description: The address is valid but the recipient could not be reached: the handset is switched off or out of coverage, or the message expired before delivery. Retrying later may succeed. Used by all authorization methods that transmit a challenge via an external helper.
   3728 HttpStatus: 503
   3729 
   3730 Value: 8251
   3731 Name: ANASTASIS_HELPER_MISCONFIGURED
   3732 Description: The transmission helper is misconfigured: a required credential is absent, the configured credentials were refused by the provider, or the provider account has insufficient balance. The provider operator should check the logs and the service configuration. Used by all authorization methods that transmit a challenge via an external helper.
   3733 HttpStatus: 500
   3734 
   3735 
   3736 Value: 8301
   3737 Name: ANASTASIS_POLICY_BAD_IF_NONE_MATCH
   3738 Description: The given if-none-match header is malformed.
   3739 HttpStatus: 400
   3740 
   3741 Value: 8304
   3742 Name: ANASTASIS_POLICY_OUT_OF_MEMORY_ON_CONTENT_LENGTH
   3743 Description: The server is out of memory to handle the upload. Trying again later may succeed.
   3744 HttpStatus: 413
   3745 
   3746 Value: 8305
   3747 Name: ANASTASIS_POLICY_BAD_SIGNATURE
   3748 Description: The signature provided in the "Anastasis-Policy-Signature" header is malformed or missing.
   3749 HttpStatus: 400
   3750 
   3751 Value: 8306
   3752 Name: ANASTASIS_POLICY_BAD_IF_MATCH
   3753 Description: The given if-match header is malformed.
   3754 HttpStatus: 400
   3755 
   3756 Value: 8307
   3757 Name: ANASTASIS_POLICY_INVALID_UPLOAD
   3758 Description: The uploaded data does not match the Etag.
   3759 HttpStatus: 400
   3760 
   3761 Value: 8350
   3762 Name: ANASTASIS_POLICY_NOT_FOUND
   3763 Description: The provider is unaware of the requested policy.
   3764 HttpStatus: 404
   3765 
   3766 
   3767 
   3768 Value: 8400
   3769 Name: ANASTASIS_REDUCER_ACTION_INVALID
   3770 Description: The given action is invalid for the current state of the reducer.
   3771 HttpStatus: 0
   3772 
   3773 Value: 8401
   3774 Name: ANASTASIS_REDUCER_STATE_INVALID
   3775 Description: The given state of the reducer is invalid.
   3776 HttpStatus: 0
   3777 
   3778 Value: 8402
   3779 Name: ANASTASIS_REDUCER_INPUT_INVALID
   3780 Description: The given input to the reducer is invalid.
   3781 HttpStatus: 0
   3782 
   3783 Value: 8403
   3784 Name: ANASTASIS_REDUCER_AUTHENTICATION_METHOD_NOT_SUPPORTED
   3785 Description: The selected authentication method does not work for the Anastasis provider.
   3786 HttpStatus: 0
   3787 
   3788 Value: 8404
   3789 Name: ANASTASIS_REDUCER_INPUT_INVALID_FOR_STATE
   3790 Description: The given input and action do not work for the current state.
   3791 HttpStatus: 0
   3792 
   3793 Value: 8405
   3794 Name: ANASTASIS_REDUCER_BACKEND_FAILURE
   3795 Description: The service experienced an unexpected failure while interacting with the backend.
   3796 HttpStatus: 0
   3797 
   3798 Value: 8406
   3799 Name: ANASTASIS_REDUCER_RESOURCE_MALFORMED
   3800 Description: The contents of a resource file did not match the expected format.
   3801 HttpStatus: 0
   3802 
   3803 Value: 8407
   3804 Name: ANASTASIS_REDUCER_RESOURCE_MISSING
   3805 Description: A required resource file is missing.
   3806 HttpStatus: 0
   3807 
   3808 Value: 8408
   3809 Name: ANASTASIS_REDUCER_INPUT_REGEX_FAILED
   3810 Description: An input did not match the regular expression.
   3811 HttpStatus: 0
   3812 
   3813 Value: 8409
   3814 Name: ANASTASIS_REDUCER_INPUT_VALIDATION_FAILED
   3815 Description: An input did not match the custom validation logic.
   3816 HttpStatus: 0
   3817 
   3818 Value: 8410
   3819 Name: ANASTASIS_REDUCER_POLICY_LOOKUP_FAILED
   3820 Description: Attempts to download the recovery document failed with all providers. The personal information may differ from the information provided during the backup process. Alternatively, the backup may use a provider that is unknown to this application and must be added manually.
   3821 HttpStatus: 0
   3822 
   3823 Value: 8411
   3824 Name: ANASTASIS_REDUCER_BACKUP_PROVIDER_FAILED
   3825 Description: Anastasis provider reported a fatal failure.
   3826 HttpStatus: 0
   3827 
   3828 Value: 8412
   3829 Name: ANASTASIS_REDUCER_PROVIDER_CONFIG_FAILED
   3830 Description: Anastasis provider failed to respond to the configuration request.
   3831 HttpStatus: 0
   3832 
   3833 Value: 8413
   3834 Name: ANASTASIS_REDUCER_POLICY_MALFORMED
   3835 Description: The downloaded policy is malformed. This was likely caused by a client error while creating the backup.
   3836 HttpStatus: 0
   3837 
   3838 Value: 8414
   3839 Name: ANASTASIS_REDUCER_NETWORK_FAILED
   3840 Description: The policy could not be obtained, likely due to a network issue.
   3841 HttpStatus: 0
   3842 
   3843 Value: 8415
   3844 Name: ANASTASIS_REDUCER_SECRET_MALFORMED
   3845 Description: The recovered secret did not match the required syntax.
   3846 HttpStatus: 0
   3847 
   3848 Value: 8416
   3849 Name: ANASTASIS_REDUCER_CHALLENGE_DATA_TOO_BIG
   3850 Description: The challenge data provided is too large for the available providers.
   3851 HttpStatus: 0
   3852 
   3853 Value: 8417
   3854 Name: ANASTASIS_REDUCER_SECRET_TOO_BIG
   3855 Description: The provided core secret is too large for some of the providers.
   3856 HttpStatus: 0
   3857 
   3858 Value: 8418
   3859 Name: ANASTASIS_REDUCER_PROVIDER_INVALID_CONFIG
   3860 Description: The provider returned an invalid configuration.
   3861 HttpStatus: 0
   3862 
   3863 Value: 8419
   3864 Name: ANASTASIS_REDUCER_INTERNAL_ERROR
   3865 Description: The reducer encountered an internal error, likely a bug that needs to be reported.
   3866 HttpStatus: 0
   3867 
   3868 Value: 8420
   3869 Name: ANASTASIS_REDUCER_PROVIDERS_ALREADY_SYNCED
   3870 Description: The reducer already synchronized with all providers.
   3871 HttpStatus: 0
   3872 
   3873 # 8500 - 8600: Frosix
   3874 
   3875 # 8600 - 8700: Donau
   3876 
   3877 Value: 8606
   3878 Name: DONAU_GENERIC_INVALID_DENOMINATION_CIPHER_FOR_OPERATION
   3879 Description: The requested operation is not valid for the cipher used by the selected denomination.
   3880 HttpStatus: 400
   3881 
   3882 Value: 8607
   3883 Name: DONAU_GENERIC_KEYS_MISSING
   3884 Description: The Donau failed to perform the operation as it could not find the private keys. This is a problem with the Donau setup, not with the client's request.
   3885 HttpStatus: 503
   3886 
   3887 Value: 8608
   3888 Name: DONAU_CHARITY_SIGNATURE_INVALID
   3889 Description: The signature of the charity key is not valid.
   3890 HttpStatus: 403
   3891 
   3892 Value: 8609
   3893 Name: DONAU_CHARITY_NOT_FOUND
   3894 Description: The charity is unknown.
   3895 HttpStatus: 404
   3896 
   3897 Value: 8610
   3898 Name: DONAU_EXCEEDING_DONATION_LIMIT
   3899 Description: The donation amount specified in the request exceeds the limit of the charity.
   3900 HttpStatus: 400
   3901 
   3902 Value: 8611
   3903 Name: DONAU_GENERIC_DONATION_UNIT_UNKNOWN
   3904 Description: The Donau is not aware of the donation unit requested for the operation.
   3905 HttpStatus: 404
   3906 
   3907 Value: 8612
   3908 Name: DONAU_DONATION_UNIT_HELPER_UNAVAILABLE
   3909 Description: The Donau failed to talk to the process responsible for its private donation unit keys or the helpers had no donation units (properly) configured.
   3910 HttpStatus: 502
   3911 
   3912 Value: 8613
   3913 Name: DONAU_SIGNKEY_HELPER_UNAVAILABLE
   3914 Description: The Donau failed to talk to the process responsible for its private signing keys.
   3915 HttpStatus: 502
   3916 
   3917 Value: 8614
   3918 Name: DONAU_SIGNKEY_HELPER_BUG
   3919 Description: The response from the online signing key helper process was malformed.
   3920 HttpStatus: 500
   3921 
   3922 Value: 8615
   3923 Name: DONAU_GENERIC_WRONG_NUMBER_OF_SEGMENTS
   3924 Description: The number of segments included in the URI does not match the number of segments expected by the endpoint.
   3925 HttpStatus: 404
   3926 
   3927 Value: 8616
   3928 Name: DONAU_DONATION_RECEIPT_SIGNATURE_INVALID
   3929 Description: The signature of the donation receipt is not valid.
   3930 HttpStatus: 403
   3931 
   3932 Value: 8617
   3933 Name: DONAU_DONOR_IDENTIFIER_NONCE_REUSE
   3934 Description: The client reused a unique donor identifier nonce, which is not allowed.
   3935 HttpStatus: 409
   3936 
   3937 Value: 8618
   3938 Name: DONAU_CHARITY_PUB_EXISTS
   3939 Description: A charity with the same public key is already registered.
   3940 HttpStatus: 404
   3941 
   3942 Value: 8619
   3943 Name: DONAU_GENERIC_DONATION_UNIT_EXPIRED
   3944 Description: The donation unit has expired and cannot be used any longer.
   3945 HttpStatus: 410
   3946 
   3947 Value: 8620
   3948 Name: DONAU_GENERIC_DONATION_UNIT_TOO_EARLY
   3949 Description: The donation unit is not yet valid. The client should repeat the request in the future when it might succeed.
   3950 HttpStatus: 425
   3951 
   3952 Value: 8621
   3953 Name: DONAU_GENERIC_DONATION_UNIT_WRONG_YEAR
   3954 Description: The donation unit is not valid for the year specified by the client.
   3955 HttpStatus: 409
   3956 
   3957 
   3958 # 9000 - 9599: LibEuFin.
   3959 
   3960 Value: 9000
   3961 Name: LIBEUFIN_NEXUS_GENERIC_ERROR
   3962 Description: A generic error occurred in the LibEuFin nexus. See the enclosed details JSON for more information.
   3963 HttpStatus: 0
   3964 
   3965 Value: 9001
   3966 Name: LIBEUFIN_NEXUS_UNCAUGHT_EXCEPTION
   3967 Description: An uncaught exception happened in the LibEuFin nexus service.
   3968 HttpStatus: 500
   3969 
   3970 Value: 9500
   3971 Name: LIBEUFIN_SANDBOX_GENERIC_ERROR
   3972 Description: A generic error occurred in the LibEuFin sandbox. See the enclosed details JSON for more information.
   3973 HttpStatus: 0
   3974 
   3975 Value: 9501
   3976 Name: LIBEUFIN_SANDBOX_UNCAUGHT_EXCEPTION
   3977 Description: An uncaught exception happened in the LibEuFin sandbox service.
   3978 HttpStatus: 500
   3979 
   3980 # 9600 - 9749: Taldir
   3981 Value: 9600
   3982 Name: TALDIR_METHOD_NOT_SUPPORTED
   3983 Description: This validation method is not supported by the service.
   3984 HttpStatus: 404
   3985 
   3986 Value: 9601
   3987 Name: TALDIR_REGISTER_RATE_LIMITED
   3988 Description: Number of allowed attempts for initiating a challenge exceeded.
   3989 HttpStatus: 429
   3990 
   3991 # 9750-9800: Challenger
   3992 Value: 9750
   3993 Name: CHALLENGER_GENERIC_CLIENT_UNKNOWN
   3994 Description: The service does not know a client with the given client identifier, or the given client secret does not match it. Used where no client has been authenticated yet.
   3995 HttpStatus: 404
   3996 
   3997 Value: 9751
   3998 Name: CHALLENGER_GENERIC_CLIENT_FORBIDDEN_BAD_REDIRECT_URI
   3999 Description: The client is not authorized to use the given redirect URI.
   4000 HttpStatus: 401
   4001 
   4002 Value: 9752
   4003 Name: CHALLENGER_HELPER_EXEC_FAILED
   4004 Description: The service failed to execute its helper process to send the challenge.
   4005 HttpStatus: 502
   4006 
   4007 Value: 9753
   4008 Name: CHALLENGER_GRANT_UNKNOWN
   4009 Description: The authorization grant is unknown to the service (it could also have been redeemed already or have expired).
   4010 HttpStatus: 400
   4011 
   4012 Value: 9754
   4013 Name: CHALLENGER_CLIENT_FORBIDDEN_BAD_CODE
   4014 Description: The code given is not even well-formed.
   4015 HttpStatus: 400
   4016 
   4017 Value: 9755
   4018 Name: CHALLENGER_GENERIC_VALIDATION_UNKNOWN
   4019 Description: The service is not aware of the referenced validation process, or it has expired.
   4020 HttpStatus: 404
   4021 
   4022 Value: 9756
   4023 Name: CHALLENGER_CLIENT_FORBIDDEN_INVALID_CODE
   4024 Description: Deprecated, no longer returned by any endpoint. The value stays reserved and must not be reused. Was: the code given is not valid.
   4025 HttpStatus: 403
   4026 
   4027 Value: 9757
   4028 Name: CHALLENGER_TOO_MANY_ATTEMPTS
   4029 Description: Too many attempts have been made, validation is temporarily disabled for this address.
   4030 HttpStatus: 429
   4031 
   4032 Value: 9758
   4033 Name: CHALLENGER_INVALID_PIN
   4034 Description: The TAN code provided is incorrect.
   4035 HttpStatus: 403
   4036 
   4037 Value: 9759
   4038 Name: CHALLENGER_MISSING_ADDRESS
   4039 Description: Deprecated since protocol v8, no longer returned by any endpoint; see CHALLENGER_NO_CHALLENGE_TRANSMITTED. The value stays reserved and must not be reused. Was: the token cannot be valid as no address was ever provided by the client.
   4040 HttpStatus: 409
   4041 
   4042 Value: 9760
   4043 Name: CHALLENGER_CLIENT_FORBIDDEN_READ_ONLY
   4044 Description: The client is not allowed to change the address being validated.
   4045 HttpStatus: 403
   4046 
   4047 Value: 9761
   4048 Name: CHALLENGER_NO_CHALLENGE_TRANSMITTED
   4049 Description: No challenge was ever transmitted for this validation, so it cannot be solved yet. The user must provide their address first.
   4050 HttpStatus: 409
   4051 
   4052 Value: 9762
   4053 Name: CHALLENGER_ADDRESS_RESTRICTION_VIOLATED
   4054 Description: An address field does not match the regular expression configured for it. The detail names the offending field.
   4055 HttpStatus: 400
   4056 
   4057 Value: 9763
   4058 Name: CHALLENGER_ADDRESS_RESTRICTION_MALFORMED
   4059 Description: The address restriction configured for this field is missing its regular expression or the expression failed to compile. This is a server misconfiguration.
   4060 HttpStatus: 500
   4061 
   4062 Value: 9764
   4063 Name: CHALLENGER_TOO_MANY_ADDRESS_CHANGES
   4064 Description: The number of times the address may be changed for this validation has been exhausted. The user must request a fresh nonce from the client.
   4065 HttpStatus: 429
   4066 
   4067 Value: 9765
   4068 Name: CHALLENGER_TOO_MANY_PIN_TRANSMISSIONS
   4069 Description: The number of times the challenge may be transmitted for this validation has been exhausted. The user may still try a different address if changes remain.
   4070 HttpStatus: 429
   4071 
   4072 Value: 9766
   4073 Name: CHALLENGER_NO_PIN_ATTEMPTS_LEFT
   4074 Description: The number of attempts to enter the TAN has been exhausted. The user may still request a retransmission or change the address.
   4075 HttpStatus: 429
   4076 
   4077 Value: 9767
   4078 Name: CHALLENGER_CLIENT_AUTHENTICATION_FAILED
   4079 Description: Authentication of the client failed: the presented client identifier and client secret do not match a registered client. This response is returned when the endpoint authenticates the client, so it challenges the client for credentials.
   4080 HttpStatus: 401
   4081 
   4082 Value: 9768
   4083 Name: CHALLENGER_TOKEN_UNKNOWN
   4084 Description: The access token presented is malformed, unknown or expired. Malformed and unknown tokens are deliberately not distinguished.
   4085 HttpStatus: 401
   4086 
   4087 Value: 9769
   4088 Name: CHALLENGER_ADDRESS_UNUSABLE
   4089 Description: The transmission helper rejected the address the user provided: it is malformed, of the wrong length, not a mobile subscription, unallocated, or blocked. The user should correct the address and try again.
   4090 HttpStatus: 400
   4091 
   4092 Value: 9770
   4093 Name: CHALLENGER_ADDRESS_UNREACHABLE
   4094 Description: The address is valid but the recipient could not be reached: the handset is switched off or out of coverage, or the message expired before delivery. Retrying later may succeed.
   4095 HttpStatus: 503
   4096 
   4097 Value: 9771
   4098 Name: CHALLENGER_HELPER_MISCONFIGURED
   4099 Description: The transmission helper is misconfigured: a required credential is absent, the configured credentials were refused by the provider, or the provider account has insufficient balance. The operator should check the logs and the service configuration.
   4100 HttpStatus: 500
   4101 
   4102 # 9800-9850: Paivana
   4103 Value: 9800
   4104 Name: PAIVANA_PAYMENT_MISSING
   4105 Description: The request is invalid as the specified order is unpaid. The client should only call this endpoint after paying the order.
   4106 HttpStatus: 409
   4107 
   4108 Value: 9801
   4109 Name: PAIVANA_BACKEND_REFUSED
   4110 Description: The merchant backend refused the request to check the payment status. The backend is either unavailable or Paivana is misconfigured. The system administrator should check the logs.
   4111 HttpStatus: 502
   4112 
   4113 Value: 9802
   4114 Name: PAIVANA_ORDER_UNKNOWN
   4115 Description: The order specified in the request is unknown to the backend. The client must instantiate the Paivana template first and pay the order before calling this endpoint.
   4116 HttpStatus: 404
   4117 
   4118 Value: 9803
   4119 Name: PAIVANA_BACKEND_ERROR
   4120 Description: The merchant backend returned an unexpected status code. This is probably a protocol incompatibility that should be reported to the developers.
   4121 HttpStatus: 500
   4122 
   4123 Value: 9804
   4124 Name: PAIVANA_GET_ORDER_FAILED
   4125 Description: Paivana failed to initialize the request to check the payment status. This should never happen. The system administrator should consult the logs.
   4126 HttpStatus: 500
   4127 
   4128 Value: 9805
   4129 Name: PAIVANA_WRONG_ORDER
   4130 Description: The specified order does not match the specified Website or nonce and thus the order is invalid for the given request. Clients should pay for the correct order for access to the resource.
   4131 HttpStatus: 409
   4132 
   4133 Value: 9806
   4134 Name: PAIVANA_TOO_LATE
   4135 Description: The specified expiration time for the cookie is longer than what the purchase allows. The request may succeed with a shorter expiration time. Alternatively, the user may need to purchase access again.
   4136 HttpStatus: 410
   4137 
   4138 Value: 9807
   4139 Name: PAIVANA_TEMPLATE_UNKNOWN
   4140 Description: The payment template specified in the request is unknown to the backend.
   4141 HttpStatus: 404
   4142 
   4143 Value: 9808
   4144 Name: PAIVANA_PAYWALL_DISABLED
   4145 Description: The paywall functionality is currently disabled. Thus, proofs of payment are unnecessary and also not supported.
   4146 HttpStatus: 501
   4147 
   4148 Value: 9809
   4149 Name: PAIVANA_INVALID_TARGET
   4150 Description: The website specified in the request is not acceptable for this backend. Somehow the client must have specified an invalid website which is not configured for this Paivana reverse proxy and thus not eligible as a target for the redirect. A developer should check how the client computed the fulfillment_url of the order and fix it.
   4151 HttpStatus: 409
   4152 
   4153 
   4154 
   4155 # Some of our build systems expect the range to be < 10k, so let's keep it like this for now.
   4156 Value: 9999
   4157 Name: END
   4158 Description: End of error code range.
   4159 HttpStatus: 0