registry.rec (147683B)
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: 404 943 944 Value: 1575 945 Name: EXCHANGE_RECOUP_REFRESH_SIGNATURE_INVALID 946 Description: The given coin signature is invalid for the request. 947 HttpStatus: 403 948 949 Value: 1576 950 Name: EXCHANGE_RECOUP_REFRESH_MELT_NOT_FOUND 951 Description: The exchange could not find the corresponding melt operation. The request is denied. 952 HttpStatus: 404 953 954 Value: 1578 955 Name: EXCHANGE_RECOUP_REFRESH_BLINDING_FAILED 956 Description: The exchange failed to reproduce the coin's blinding. 957 HttpStatus: 500 958 959 Value: 1580 960 Name: EXCHANGE_RECOUP_REFRESH_NOT_ELIGIBLE 961 Description: The coin's denomination has not been revoked yet. 962 HttpStatus: 404 963 964 965 Value: 1600 966 Name: EXCHANGE_KEYS_TIMETRAVEL_FORBIDDEN 967 Description: This exchange does not allow clients to request `/keys` for times other than the current exchange time. 968 HttpStatus: 403 969 970 Value: 1650 971 Name: EXCHANGE_WIRE_SIGNATURE_INVALID 972 Description: A signature in the server's response was malformed. 973 HttpStatus: 0 974 975 Value: 1651 976 Name: EXCHANGE_WIRE_NO_ACCOUNTS_CONFIGURED 977 Description: No bank accounts are enabled for the exchange. The administrator should enable an account using the `taler-exchange-offline` tool. 978 HttpStatus: 500 979 980 Value: 1652 981 Name: EXCHANGE_WIRE_INVALID_PAYTO_CONFIGURED 982 Description: The payto:// URI stored in the exchange database for its bank account is malformed. 983 HttpStatus: 500 984 985 Value: 1653 986 Name: EXCHANGE_WIRE_FEES_NOT_CONFIGURED 987 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. 988 HttpStatus: 500 989 990 991 Value: 1675 992 Name: EXCHANGE_RESERVES_PURSE_CREATE_CONFLICTING_META_DATA 993 Description: This purse was previously created with different metadata. 994 HttpStatus: 409 995 996 Value: 1676 997 Name: EXCHANGE_RESERVES_PURSE_MERGE_CONFLICTING_META_DATA 998 Description: This purse was previously merged with different metadata. 999 HttpStatus: 409 1000 1001 Value: 1677 1002 Name: EXCHANGE_RESERVES_PURSE_CREATE_INSUFFICIENT_FUNDS 1003 Description: The reserve has insufficient funds to create another purse. 1004 HttpStatus: 409 1005 1006 Value: 1678 1007 Name: EXCHANGE_RESERVES_PURSE_FEE_TOO_LOW 1008 Description: The purse fee specified for the request is lower than the purse fee charged by the exchange at this time. 1009 HttpStatus: 400 1010 1011 Value: 1679 1012 Name: EXCHANGE_PURSE_DELETE_ALREADY_DECIDED 1013 Description: The payment request cannot be deleted anymore, as it either already completed or timed out. 1014 HttpStatus: 409 1015 1016 Value: 1680 1017 Name: EXCHANGE_PURSE_DELETE_SIGNATURE_INVALID 1018 Description: The signature affirming the purse deletion is invalid. 1019 HttpStatus: 403 1020 1021 Value: 1681 1022 Name: EXCHANGE_RESERVES_AGE_RESTRICTION_REQUIRED 1023 Description: Withdrawal from the reserve requires age restriction to be set. 1024 HttpStatus: 403 1025 1026 Value: 1700 1027 Name: EXCHANGE_DENOMINATION_HELPER_UNAVAILABLE 1028 Description: The exchange failed to talk to the process responsible for its private denomination keys or the helpers had no denominations (properly) configured. 1029 HttpStatus: 502 1030 1031 Value: 1701 1032 Name: EXCHANGE_DENOMINATION_HELPER_BUG 1033 Description: The response from the denomination key helper process was malformed. 1034 HttpStatus: 500 1035 1036 Value: 1702 1037 Name: EXCHANGE_DENOMINATION_HELPER_TOO_EARLY 1038 Description: The helper refuses to sign with the key, because it is too early: the validity period has not yet started. 1039 HttpStatus: 400 1040 1041 Value: 1725 1042 Name: EXCHANGE_PURSE_DEPOSIT_EXCHANGE_SIGNATURE_INVALID 1043 Description: The exchange's signature on the response was invalid. 1044 HttpStatus: 0 1045 1046 1047 Value: 1750 1048 Name: EXCHANGE_SIGNKEY_HELPER_UNAVAILABLE 1049 Description: The exchange failed to talk to the process responsible for its private signing keys. 1050 HttpStatus: 502 1051 1052 Value: 1751 1053 Name: EXCHANGE_SIGNKEY_HELPER_BUG 1054 Description: The response from the online signing key helper process was malformed. 1055 HttpStatus: 500 1056 1057 Value: 1752 1058 Name: EXCHANGE_SIGNKEY_HELPER_TOO_EARLY 1059 Description: The helper refuses to sign with the key, because it is too early: the validity period has not yet started. 1060 HttpStatus: 400 1061 1062 Value: 1753 1063 Name: EXCHANGE_SIGNKEY_HELPER_OFFLINE_MISSING 1064 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. 1065 HttpStatus: 500 1066 1067 1068 1069 Value: 1775 1070 Name: EXCHANGE_RESERVES_PURSE_EXPIRATION_BEFORE_NOW 1071 Description: The purse expiration time is in the past at the time of its creation. 1072 HttpStatus: 400 1073 1074 Value: 1776 1075 Name: EXCHANGE_RESERVES_PURSE_EXPIRATION_IS_NEVER 1076 Description: The purse expiration time is set to never, which is not allowed. 1077 HttpStatus: 400 1078 1079 Value: 1777 1080 Name: EXCHANGE_RESERVES_PURSE_MERGE_SIGNATURE_INVALID 1081 Description: The signature affirming the merge of the purse is invalid. 1082 HttpStatus: 403 1083 1084 Value: 1778 1085 Name: EXCHANGE_RESERVES_RESERVE_MERGE_SIGNATURE_INVALID 1086 Description: The signature by the reserve affirming the merge is invalid. 1087 HttpStatus: 403 1088 1089 Value: 1785 1090 Name: EXCHANGE_RESERVES_OPEN_BAD_SIGNATURE 1091 Description: The signature by the reserve affirming the open operation is invalid. 1092 HttpStatus: 403 1093 1094 Value: 1786 1095 Name: EXCHANGE_RESERVES_CLOSE_BAD_SIGNATURE 1096 Description: The signature by the reserve affirming the close operation is invalid. 1097 HttpStatus: 403 1098 1099 Value: 1787 1100 Name: EXCHANGE_RESERVES_ATTEST_BAD_SIGNATURE 1101 Description: The signature by the reserve affirming the attestation request is invalid. 1102 HttpStatus: 403 1103 1104 Value: 1788 1105 Name: EXCHANGE_RESERVES_CLOSE_NO_TARGET_ACCOUNT 1106 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. 1107 HttpStatus: 409 1108 1109 Value: 1789 1110 Name: EXCHANGE_RESERVES_OPEN_INSUFFICIENT_FUNDS 1111 Description: The reserve balance is insufficient to pay for the open operation. 1112 HttpStatus: 409 1113 1114 Value: 1790 1115 Name: EXCHANGE_RESERVES_OPEN_COIN_SIGNATURE_INVALID 1116 Description: A coin signature for a deposit to pay to open the reserve is invalid. 1117 HttpStatus: 403 1118 1119 Value: 1800 1120 Name: EXCHANGE_MANAGEMENT_AUDITOR_NOT_FOUND 1121 Description: The auditor that was supposed to be disabled is unknown to this exchange. 1122 HttpStatus: 404 1123 1124 Value: 1801 1125 Name: EXCHANGE_MANAGEMENT_AUDITOR_MORE_RECENT_PRESENT 1126 Description: The exchange has a more recently signed conflicting instruction and is thus refusing the current change (replay detected). 1127 HttpStatus: 409 1128 1129 Value: 1802 1130 Name: EXCHANGE_MANAGEMENT_AUDITOR_ADD_SIGNATURE_INVALID 1131 Description: The signature to add or enable the auditor does not validate. 1132 HttpStatus: 403 1133 1134 Value: 1803 1135 Name: EXCHANGE_MANAGEMENT_AUDITOR_DEL_SIGNATURE_INVALID 1136 Description: The signature to disable the auditor does not validate. 1137 HttpStatus: 403 1138 1139 Value: 1804 1140 Name: EXCHANGE_MANAGEMENT_DENOMINATION_REVOKE_SIGNATURE_INVALID 1141 Description: The signature to revoke the denomination does not validate. 1142 HttpStatus: 403 1143 1144 Value: 1805 1145 Name: EXCHANGE_MANAGEMENT_SIGNKEY_REVOKE_SIGNATURE_INVALID 1146 Description: The signature to revoke the online signing key does not validate. 1147 HttpStatus: 403 1148 1149 Value: 1806 1150 Name: EXCHANGE_MANAGEMENT_WIRE_MORE_RECENT_PRESENT 1151 Description: The exchange has a more recently signed conflicting instruction and is thus refusing the current change (replay detected). 1152 HttpStatus: 409 1153 1154 Value: 1807 1155 Name: EXCHANGE_MANAGEMENT_KEYS_SIGNKEY_UNKNOWN 1156 Description: The signingkey specified is unknown to the exchange. 1157 HttpStatus: 404 1158 1159 Value: 1808 1160 Name: EXCHANGE_MANAGEMENT_WIRE_DETAILS_SIGNATURE_INVALID 1161 Description: The signature to publish wire account does not validate. 1162 HttpStatus: 403 1163 1164 Value: 1809 1165 Name: EXCHANGE_MANAGEMENT_WIRE_ADD_SIGNATURE_INVALID 1166 Description: The signature to add the wire account does not validate. 1167 HttpStatus: 403 1168 1169 Value: 1810 1170 Name: EXCHANGE_MANAGEMENT_WIRE_DEL_SIGNATURE_INVALID 1171 Description: The signature to disable the wire account does not validate. 1172 HttpStatus: 403 1173 1174 Value: 1811 1175 Name: EXCHANGE_MANAGEMENT_WIRE_NOT_FOUND 1176 Description: The wire account to be disabled is unknown to the exchange. 1177 HttpStatus: 404 1178 1179 Value: 1812 1180 Name: EXCHANGE_MANAGEMENT_WIRE_FEE_SIGNATURE_INVALID 1181 Description: The signature to affirm wire fees does not validate. 1182 HttpStatus: 403 1183 1184 Value: 1813 1185 Name: EXCHANGE_MANAGEMENT_WIRE_FEE_MISMATCH 1186 Description: The signature conflicts with a previous signature affirming different fees. 1187 HttpStatus: 409 1188 1189 Value: 1814 1190 Name: EXCHANGE_MANAGEMENT_KEYS_DENOMKEY_ADD_SIGNATURE_INVALID 1191 Description: The signature affirming the denomination key is invalid. 1192 HttpStatus: 403 1193 1194 Value: 1815 1195 Name: EXCHANGE_MANAGEMENT_KEYS_SIGNKEY_ADD_SIGNATURE_INVALID 1196 Description: The signature affirming the signing key is invalid. 1197 HttpStatus: 403 1198 1199 Value: 1816 1200 Name: EXCHANGE_MANAGEMENT_GLOBAL_FEE_MISMATCH 1201 Description: The signature conflicts with a previous signature affirming different fees. 1202 HttpStatus: 409 1203 1204 Value: 1817 1205 Name: EXCHANGE_MANAGEMENT_GLOBAL_FEE_SIGNATURE_INVALID 1206 Description: The signature affirming the fee structure is invalid. 1207 HttpStatus: 403 1208 1209 Value: 1818 1210 Name: EXCHANGE_MANAGEMENT_DRAIN_PROFITS_SIGNATURE_INVALID 1211 Description: The signature affirming the profit drain is invalid. 1212 HttpStatus: 403 1213 1214 Value: 1825 1215 Name: EXCHANGE_AML_DECISION_ADD_SIGNATURE_INVALID 1216 Description: The signature affirming the AML decision is invalid. 1217 HttpStatus: 403 1218 1219 Value: 1826 1220 Name: EXCHANGE_AML_DECISION_INVALID_OFFICER 1221 Description: The AML officer specified is not allowed to make AML decisions right now. 1222 HttpStatus: 403 1223 1224 Value: 1827 1225 Name: EXCHANGE_AML_DECISION_MORE_RECENT_PRESENT 1226 Description: There is a more recent AML decision on file. The decision was rejected as timestamps of AML decisions must be monotonically increasing. 1227 HttpStatus: 409 1228 1229 Value: 1828 1230 Name: EXCHANGE_AML_DECISION_UNKNOWN_CHECK 1231 Description: The AML decision would impose an AML check of a type that is not provided by any KYC provider known to the exchange. 1232 HttpStatus: 400 1233 1234 Value: 1830 1235 Name: EXCHANGE_MANAGEMENT_UPDATE_AML_OFFICER_SIGNATURE_INVALID 1236 Description: The signature affirming the change in the AML officer status is invalid. 1237 HttpStatus: 403 1238 1239 Value: 1831 1240 Name: EXCHANGE_MANAGEMENT_AML_OFFICERS_MORE_RECENT_PRESENT 1241 Description: A more recent decision about the AML officer status is known to the exchange. 1242 HttpStatus: 409 1243 1244 Value: 1832 1245 Name: EXCHANGE_MANAGEMENT_CONFLICTING_DENOMINATION_META_DATA 1246 Description: The exchange already has this denomination key configured, but with different metadata. This should not be possible; contact the developers for support. 1247 HttpStatus: 409 1248 1249 Value: 1833 1250 Name: EXCHANGE_MANAGEMENT_CONFLICTING_SIGNKEY_META_DATA 1251 Description: The exchange already has this signing key configured, but with different metadata. This should not be possible; contact the developers for support. 1252 HttpStatus: 409 1253 1254 1255 1256 Value: 1850 1257 Name: EXCHANGE_PURSE_CREATE_CONFLICTING_META_DATA 1258 Description: The purse was previously created with different metadata. 1259 HttpStatus: 409 1260 1261 Value: 1851 1262 Name: EXCHANGE_PURSE_CREATE_CONFLICTING_CONTRACT_STORED 1263 Description: The purse was previously created with a different contract. 1264 HttpStatus: 409 1265 1266 Value: 1852 1267 Name: EXCHANGE_PURSE_CREATE_COIN_SIGNATURE_INVALID 1268 Description: A coin signature for a deposit into the purse is invalid. 1269 HttpStatus: 403 1270 1271 Value: 1853 1272 Name: EXCHANGE_PURSE_CREATE_EXPIRATION_BEFORE_NOW 1273 Description: The purse expiration time is in the past. 1274 HttpStatus: 400 1275 1276 Value: 1854 1277 Name: EXCHANGE_PURSE_CREATE_EXPIRATION_IS_NEVER 1278 Description: The purse expiration time is `never`. 1279 HttpStatus: 400 1280 1281 Value: 1855 1282 Name: EXCHANGE_PURSE_CREATE_SIGNATURE_INVALID 1283 Description: The purse signature over the purse metadata is invalid. 1284 HttpStatus: 403 1285 1286 Value: 1856 1287 Name: EXCHANGE_PURSE_ECONTRACT_SIGNATURE_INVALID 1288 Description: The signature over the encrypted contract is invalid. 1289 HttpStatus: 403 1290 1291 Value: 1857 1292 Name: EXCHANGE_PURSE_CREATE_EXCHANGE_SIGNATURE_INVALID 1293 Description: The signature from the exchange over the confirmation is invalid. 1294 HttpStatus: 0 1295 1296 Value: 1858 1297 Name: EXCHANGE_PURSE_DEPOSIT_CONFLICTING_META_DATA 1298 Description: The coin was previously deposited with different metadata. 1299 HttpStatus: 409 1300 1301 Value: 1859 1302 Name: EXCHANGE_PURSE_ECONTRACT_CONFLICTING_META_DATA 1303 Description: The encrypted contract was previously uploaded with different metadata. 1304 HttpStatus: 409 1305 1306 Value: 1860 1307 Name: EXCHANGE_CREATE_PURSE_NEGATIVE_VALUE_AFTER_FEE 1308 Description: The deposited amount is less than the purse fee. 1309 HttpStatus: 400 1310 1311 Value: 1876 1312 Name: EXCHANGE_PURSE_MERGE_INVALID_MERGE_SIGNATURE 1313 Description: The signature using the merge key is invalid. 1314 HttpStatus: 403 1315 1316 Value: 1877 1317 Name: EXCHANGE_PURSE_MERGE_INVALID_RESERVE_SIGNATURE 1318 Description: The signature using the reserve key is invalid. 1319 HttpStatus: 403 1320 1321 Value: 1878 1322 Name: EXCHANGE_PURSE_NOT_FULL 1323 Description: The targeted purse is not yet full and thus cannot be merged. Retrying the request later may succeed. 1324 HttpStatus: 409 1325 1326 Value: 1879 1327 Name: EXCHANGE_PURSE_MERGE_EXCHANGE_SIGNATURE_INVALID 1328 Description: The signature from the exchange over the confirmation is invalid. 1329 HttpStatus: 0 1330 1331 Value: 1880 1332 Name: EXCHANGE_MERGE_PURSE_PARTNER_UNKNOWN 1333 Description: The exchange of the target account is not a partner of this exchange. 1334 HttpStatus: 404 1335 1336 Value: 1890 1337 Name: EXCHANGE_MANAGEMENT_ADD_PARTNER_SIGNATURE_INVALID 1338 Description: The signature affirming the new partner is invalid. 1339 HttpStatus: 403 1340 1341 Value: 1891 1342 Name: EXCHANGE_MANAGEMENT_ADD_PARTNER_DATA_CONFLICT 1343 Description: Conflicting data for the partner already exists with the exchange. 1344 HttpStatus: 409 1345 1346 1347 Value: 1900 1348 Name: EXCHANGE_AUDITORS_AUDITOR_SIGNATURE_INVALID 1349 Description: The auditor signature over the denomination metadata is invalid. 1350 HttpStatus: 403 1351 1352 Value: 1901 1353 Name: EXCHANGE_AUDITORS_AUDITOR_UNKNOWN 1354 Description: The auditor that was specified is unknown to this exchange. 1355 HttpStatus: 412 1356 1357 Value: 1902 1358 Name: EXCHANGE_AUDITORS_AUDITOR_INACTIVE 1359 Description: The auditor that was specified is no longer used by this exchange. 1360 HttpStatus: 410 1361 1362 Value: 1917 1363 Name: EXCHANGE_KYC_INVALID_FORM_SUBMITTED 1364 Description: The client submitted the wrong form for the request. This is some invalid use of the API. Please contact technical support. 1365 HttpStatus: 409 1366 1367 Value: 1918 1368 Name: EXCHANGE_KYC_GENERIC_AML_PROGRAM_TIMEOUT 1369 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). 1370 HttpStatus: 500 1371 1372 Value: 1919 1373 Name: EXCHANGE_KYC_INFO_AUTHORIZATION_FAILED 1374 Description: The KYC info access token is not recognized. Hence the request was denied. 1375 HttpStatus: 403 1376 1377 Value: 1920 1378 Name: EXCHANGE_KYC_RECURSIVE_RULE_DETECTED 1379 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. 1380 HttpStatus: 500 1381 1382 Value: 1921 1383 Name: EXCHANGE_KYC_AML_FORM_INCOMPLETE 1384 Description: The submitted KYC data lacks an attribute that is required by the KYC form. Please submit the complete form. 1385 HttpStatus: 400 1386 1387 Value: 1922 1388 Name: EXCHANGE_KYC_GENERIC_AML_PROGRAM_GONE 1389 Description: The request requires an AML program which is no longer configured at the exchange. Contact the exchange operator to address the configuration issue. 1390 HttpStatus: 500 1391 1392 Value: 1923 1393 Name: EXCHANGE_KYC_NOT_A_FORM 1394 Description: The given check is not of type 'form' and thus using this handler for form submission is incorrect. 1395 HttpStatus: 400 1396 1397 Value: 1924 1398 Name: EXCHANGE_KYC_GENERIC_CHECK_GONE 1399 Description: The request requires a check which is no longer configured at the exchange. Contact the exchange operator to address the configuration issue. 1400 HttpStatus: 500 1401 1402 Value: 1925 1403 Name: EXCHANGE_KYC_WALLET_SIGNATURE_INVALID 1404 Description: The signature affirming the wallet's KYC request was invalid. 1405 HttpStatus: 403 1406 1407 Value: 1926 1408 Name: EXCHANGE_KYC_PROOF_BACKEND_INVALID_RESPONSE 1409 Description: The exchange received an unexpected malformed response from its KYC backend. 1410 HttpStatus: 502 1411 1412 Value: 1927 1413 Name: EXCHANGE_KYC_PROOF_BACKEND_ERROR 1414 Description: The backend signaled an unexpected failure. 1415 HttpStatus: 502 1416 1417 Value: 1928 1418 Name: EXCHANGE_KYC_PROOF_BACKEND_AUTHORIZATION_FAILED 1419 Description: The backend signaled an authorization failure. 1420 HttpStatus: 403 1421 1422 Value: 1929 1423 Name: EXCHANGE_KYC_PROOF_REQUEST_UNKNOWN 1424 Description: The exchange is unaware of having made the authorization request. 1425 HttpStatus: 404 1426 1427 Value: 1930 1428 Name: EXCHANGE_KYC_CHECK_AUTHORIZATION_FAILED 1429 Description: The KYC authorization signature was invalid. Hence the request was denied. 1430 HttpStatus: 403 1431 1432 Value: 1931 1433 Name: EXCHANGE_KYC_GENERIC_LOGIC_UNKNOWN 1434 Description: The request used a logic specifier that is not known to the exchange. 1435 HttpStatus: 404 1436 1437 Value: 1932 1438 Name: EXCHANGE_KYC_GENERIC_LOGIC_GONE 1439 Description: The request requires a logic which is no longer configured at the exchange. 1440 HttpStatus: 500 1441 1442 Value: 1933 1443 Name: EXCHANGE_KYC_GENERIC_LOGIC_BUG 1444 Description: The logic plugin had a bug in its interaction with the KYC provider. 1445 HttpStatus: 500 1446 1447 Value: 1934 1448 Name: EXCHANGE_KYC_GENERIC_PROVIDER_ACCESS_REFUSED 1449 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. 1450 HttpStatus: 511 1451 1452 Value: 1935 1453 Name: EXCHANGE_KYC_GENERIC_PROVIDER_TIMEOUT 1454 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. 1455 HttpStatus: 504 1456 1457 Value: 1936 1458 Name: EXCHANGE_KYC_GENERIC_PROVIDER_UNEXPECTED_REPLY 1459 Description: The KYC provider responded with a status that was completely unexpected by the KYC logic of the exchange. 1460 HttpStatus: 502 1461 1462 Value: 1937 1463 Name: EXCHANGE_KYC_GENERIC_PROVIDER_RATE_LIMIT_EXCEEDED 1464 Description: The rate limit of the exchange at the KYC provider has been exceeded. Trying much later might work. 1465 HttpStatus: 503 1466 1467 Value: 1938 1468 Name: EXCHANGE_KYC_WEBHOOK_UNAUTHORIZED 1469 Description: The request to the webhook lacked proper authorization or authentication data. 1470 HttpStatus: 401 1471 1472 Value: 1939 1473 Name: EXCHANGE_KYC_CHECK_REQUEST_UNKNOWN 1474 Description: The exchange is unaware of the requested payto URI with respect to the KYC status. 1475 HttpStatus: 404 1476 1477 Value: 1940 1478 Name: EXCHANGE_KYC_CHECK_AUTHORIZATION_KEY_UNKNOWN 1479 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. 1480 HttpStatus: 409 1481 1482 Value: 1941 1483 Name: EXCHANGE_KYC_FORM_ALREADY_UPLOADED 1484 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. 1485 HttpStatus: 409 1486 1487 Value: 1942 1488 Name: EXCHANGE_KYC_MEASURES_MALFORMED 1489 Description: The internal state of the exchange specifying KYC measures is malformed. Please contact technical support. 1490 HttpStatus: 500 1491 1492 Value: 1943 1493 Name: EXCHANGE_KYC_MEASURE_INDEX_INVALID 1494 Description: The specified index does not refer to a valid KYC measure. Please check the URL. 1495 HttpStatus: 404 1496 1497 Value: 1944 1498 Name: EXCHANGE_KYC_INVALID_LOGIC_TO_CHECK 1499 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. 1500 HttpStatus: 409 1501 1502 Value: 1945 1503 Name: EXCHANGE_KYC_AML_PROGRAM_FAILURE 1504 Description: The AML program failed. This is either caused by a configuration change or a bug. Please contact technical support. 1505 HttpStatus: 500 1506 1507 Value: 1946 1508 Name: EXCHANGE_KYC_AML_PROGRAM_MALFORMED_RESULT 1509 Description: The AML program returned a malformed result. This is a bug. Please contact technical support. 1510 HttpStatus: 500 1511 1512 Value: 1947 1513 Name: EXCHANGE_KYC_GENERIC_PROVIDER_INCOMPLETE_REPLY 1514 Description: The response from the KYC provider lacked required attributes. Please contact technical support. 1515 HttpStatus: 502 1516 1517 Value: 1948 1518 Name: EXCHANGE_KYC_GENERIC_PROVIDER_INCOMPLETE_CONTEXT 1519 Description: The context of the KYC check lacked required fields. This is a bug. Please contact technical support. 1520 HttpStatus: 500 1521 1522 Value: 1949 1523 Name: EXCHANGE_KYC_GENERIC_AML_LOGIC_BUG 1524 Description: The logic plugin had a bug in its AML processing. This is a bug. Please contact technical support. 1525 HttpStatus: 500 1526 1527 Value: 1950 1528 Name: EXCHANGE_CONTRACTS_UNKNOWN 1529 Description: The exchange does not know a contract under the given contract public key. 1530 HttpStatus: 404 1531 1532 Value: 1951 1533 Name: EXCHANGE_CONTRACTS_INVALID_CONTRACT_PUB 1534 Description: The URL does not encode a valid exchange public key in its path. 1535 HttpStatus: 400 1536 1537 Value: 1952 1538 Name: EXCHANGE_CONTRACTS_DECRYPTION_FAILED 1539 Description: The returned encrypted contract did not decrypt. 1540 HttpStatus: 0 1541 1542 Value: 1953 1543 Name: EXCHANGE_CONTRACTS_SIGNATURE_INVALID 1544 Description: The signature on the encrypted contract did not validate. 1545 HttpStatus: 0 1546 1547 Value: 1954 1548 Name: EXCHANGE_CONTRACTS_DECODING_FAILED 1549 Description: The decrypted contract was malformed. 1550 HttpStatus: 0 1551 1552 Value: 1975 1553 Name: EXCHANGE_PURSE_DEPOSIT_COIN_SIGNATURE_INVALID 1554 Description: A coin signature for a deposit into the purse is invalid. 1555 HttpStatus: 403 1556 1557 Value: 1976 1558 Name: EXCHANGE_PURSE_DEPOSIT_DECIDED_ALREADY 1559 Description: It is too late to deposit coins into the purse. 1560 HttpStatus: 410 1561 1562 Value: 1977 1563 Name: EXCHANGE_KYC_INFO_BUSY 1564 Description: The exchange is currently processing the KYC status and is not able to return a response yet. 1565 HttpStatus: 202 1566 1567 1568 Value: 1980 1569 Name: EXCHANGE_TOTP_KEY_INVALID 1570 Description: TOTP key is not valid. 1571 HttpStatus: 0 1572 1573 1574 1575 1576 # 2000 - 2999: Reserved for merchant 1577 # 2000 - 2099: Reserved for MERCHANT_GENERIC 1578 1579 Value: 2000 1580 Name: MERCHANT_GENERIC_INSTANCE_UNKNOWN 1581 Description: The backend could not find the merchant instance specified in the request. 1582 HttpStatus: 404 1583 1584 Value: 2001 1585 Name: MERCHANT_GENERIC_HOLE_IN_WIRE_FEE_STRUCTURE 1586 Description: The start and end-times in the wire fee structure leave a hole. This is not allowed. 1587 HttpStatus: 0 1588 1589 Value: 2002 1590 Name: MERCHANT_GENERIC_EXCHANGE_MASTER_KEY_MISMATCH 1591 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. 1592 HttpStatus: 502 1593 1594 Value: 2003 1595 Name: MERCHANT_GENERIC_CATEGORY_UNKNOWN 1596 Description: The product category is not known to the backend. 1597 HttpStatus: 404 1598 1599 Value: 2004 1600 Name: MERCHANT_GENERIC_UNIT_UNKNOWN 1601 Description: The unit referenced in the request is not known to the backend. 1602 HttpStatus: 404 1603 1604 Value: 2005 1605 Name: MERCHANT_GENERIC_ORDER_UNKNOWN 1606 Description: The proposal is not known to the backend. 1607 HttpStatus: 404 1608 1609 Value: 2006 1610 Name: MERCHANT_GENERIC_PRODUCT_UNKNOWN 1611 Description: The order provided to the backend could not be completed because a product specified through inventory data is not in the inventory. 1612 HttpStatus: 404 1613 1614 Value: 2007 1615 Name: MERCHANT_GENERIC_REWARD_ID_UNKNOWN 1616 Description: The reward ID is unknown. This could happen if the reward has expired. 1617 HttpStatus: 404 1618 1619 Value: 2008 1620 Name: MERCHANT_GENERIC_DB_CONTRACT_CONTENT_INVALID 1621 Description: The contract obtained from the merchant backend was malformed. 1622 HttpStatus: 500 1623 1624 Value: 2009 1625 Name: MERCHANT_GENERIC_CONTRACT_HASH_DOES_NOT_MATCH_ORDER 1626 Description: The order we found does not match the provided contract hash. 1627 HttpStatus: 403 1628 1629 Value: 2010 1630 Name: MERCHANT_GENERIC_EXCHANGE_KEYS_FAILURE 1631 Description: The exchange failed to provide a valid response to the merchant's /keys request. 1632 HttpStatus: 502 1633 1634 Value: 2011 1635 Name: MERCHANT_GENERIC_EXCHANGE_TIMEOUT 1636 Description: The exchange failed to respond to the merchant on time. 1637 HttpStatus: 504 1638 1639 Value: 2012 1640 Name: MERCHANT_GENERIC_EXCHANGE_CONNECT_FAILURE 1641 Description: The merchant failed to talk to the exchange. 1642 HttpStatus: 500 1643 1644 Value: 2013 1645 Name: MERCHANT_GENERIC_EXCHANGE_REPLY_MALFORMED 1646 Description: The exchange returned a malformed response. 1647 HttpStatus: 502 1648 1649 Value: 2014 1650 Name: MERCHANT_GENERIC_EXCHANGE_UNEXPECTED_STATUS 1651 Description: The exchange returned an unexpected response status. 1652 HttpStatus: 502 1653 1654 Value: 2015 1655 Name: MERCHANT_GENERIC_UNAUTHORIZED 1656 Description: The merchant refused the request due to lack of authorization. 1657 HttpStatus: 401 1658 1659 Value: 2016 1660 Name: MERCHANT_GENERIC_INSTANCE_DELETED 1661 Description: The merchant instance specified in the request was deleted. 1662 HttpStatus: 404 1663 1664 Value: 2017 1665 Name: MERCHANT_GENERIC_TRANSFER_UNKNOWN 1666 Description: The backend could not find the inbound wire transfer specified in the request. 1667 HttpStatus: 404 1668 1669 Value: 2018 1670 Name: MERCHANT_GENERIC_TEMPLATE_UNKNOWN 1671 Description: The backend could not find the template with the specified ID because it does not exist. 1672 HttpStatus: 404 1673 1674 Value: 2019 1675 Name: MERCHANT_GENERIC_WEBHOOK_UNKNOWN 1676 Description: The backend could not find the webhook with the specified ID because it does not exist. 1677 HttpStatus: 404 1678 1679 Value: 2020 1680 Name: MERCHANT_GENERIC_PENDING_WEBHOOK_UNKNOWN 1681 Description: The backend could not find the webhook with the specified serial because it does not exist. 1682 HttpStatus: 404 1683 1684 Value: 2021 1685 Name: MERCHANT_GENERIC_OTP_DEVICE_UNKNOWN 1686 Description: The backend could not find the OTP device with the specified ID because it does not exist. 1687 HttpStatus: 404 1688 1689 Value: 2022 1690 Name: MERCHANT_GENERIC_ACCOUNT_UNKNOWN 1691 Description: The account is not known to the backend. 1692 HttpStatus: 404 1693 1694 Value: 2023 1695 Name: MERCHANT_GENERIC_H_WIRE_MALFORMED 1696 Description: The wire hash was malformed. 1697 HttpStatus: 400 1698 1699 Value: 2024 1700 Name: MERCHANT_GENERIC_CURRENCY_MISMATCH 1701 Description: The currency specified in the operation does not work with the current state of the given resource. 1702 HttpStatus: 409 1703 1704 Value: 2025 1705 Name: MERCHANT_GENERIC_EXCHANGE_UNTRUSTED 1706 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. 1707 HttpStatus: 400 1708 1709 Value: 2026 1710 Name: MERCHANT_GENERIC_TOKEN_FAMILY_UNKNOWN 1711 Description: The token family is not known to the backend. 1712 HttpStatus: 404 1713 1714 Value: 2027 1715 Name: MERCHANT_GENERIC_TOKEN_KEY_UNKNOWN 1716 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. 1717 HttpStatus: 404 1718 1719 Value: 2028 1720 Name: MERCHANT_GENERIC_DONAU_NOT_CONFIGURED 1721 Description: The merchant backend is not configured to support the DONAU protocol. 1722 HttpStatus: 501 1723 1724 Value: 2029 1725 Name: MERCHANT_EXCHANGE_SIGN_PUB_UNKNOWN 1726 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. 1727 HttpStatus: 0 1728 1729 Value: 2030 1730 Name: MERCHANT_GENERIC_FEATURE_NOT_AVAILABLE 1731 Description: The merchant backend does not support the requested feature. 1732 HttpStatus: 501 1733 1734 Value: 2031 1735 Name: MERCHANT_GENERIC_MFA_MISSING 1736 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. 1737 HttpStatus: 403 1738 1739 Value: 2032 1740 Name: MERCHANT_GENERIC_DONAU_INVALID_RESPONSE 1741 Description: A donation authority (Donau) provided an invalid response. This should be analyzed by the administrator. Trying again later may help. 1742 HttpStatus: 502 1743 1744 Value: 2033 1745 Name: MERCHANT_GENERIC_UNIT_BUILTIN 1746 Description: The unit referenced in the request is built-in and cannot be modified or deleted. 1747 HttpStatus: 409 1748 1749 Value: 2034 1750 Name: MERCHANT_GENERIC_REPORT_UNKNOWN 1751 Description: The report ID provided to the backend is not known to the backend. 1752 HttpStatus: 404 1753 1754 Value: 2035 1755 Name: MERCHANT_GENERIC_REPORT_GENERATOR_UNCONFIGURED 1756 Description: The report ID provided to the backend is not known to the backend. 1757 HttpStatus: 501 1758 1759 Value: 2036 1760 Name: MERCHANT_GENERIC_PRODUCT_GROUP_UNKNOWN 1761 Description: The product group ID provided to the backend is not known to the backend. 1762 HttpStatus: 404 1763 1764 Value: 2037 1765 Name: MERCHANT_GENERIC_MONEY_POT_UNKNOWN 1766 Description: The money pod ID provided to the backend is not known to the backend. 1767 HttpStatus: 404 1768 1769 Value: 2038 1770 Name: MERCHANT_GENERIC_SESSION_UNKNOWN 1771 Description: The session ID provided to the backend is not known to the backend. 1772 HttpStatus: 404 1773 1774 Value: 2039 1775 Name: MERCHANT_GENERIC_DONAU_CHARITY_UNKNOWN 1776 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. 1777 HttpStatus: 404 1778 1779 Value: 2040 1780 Name: MERCHANT_GENERIC_EXPECTED_TRANSFER_UNKNOWN 1781 Description: The merchant does not expect a transfer with the given ID and therefore cannot return any details about it. 1782 HttpStatus: 404 1783 1784 Value: 2041 1785 Name: MERCHANT_GENERIC_DONAU_UNKNOWN 1786 Description: The Donau is not known to the backend. 1787 HttpStatus: 404 1788 1789 Value: 2042 1790 Name: MERCHANT_GENERIC_ACCESS_TOKEN_UNKNOWN 1791 Description: The access token is not known to the backend. 1792 HttpStatus: 404 1793 1794 Value: 2043 1795 Name: MERCHANT_GENERIC_FOUNTAIN_UNKNOWN 1796 Description: The fountain is not known to the backend. 1797 HttpStatus: 404 1798 1799 Value: 2048 1800 Name: MERCHANT_GENERIC_NO_TYPST_OR_PDFTK 1801 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. 1802 HttpStatus: 501 1803 1804 1805 1806 1807 # 2100-2499: public API 1808 # 2100-2124: get orders endpoint 1809 1810 Value: 2100 1811 Name: MERCHANT_GET_ORDERS_EXCHANGE_TRACKING_FAILURE 1812 Description: The exchange failed to provide a valid answer to the tracking request, thus those details are not in the response. 1813 HttpStatus: 200 1814 1815 Value: 2103 1816 Name: MERCHANT_GET_ORDERS_ID_EXCHANGE_REQUEST_FAILURE 1817 Description: The merchant backend failed to construct the request for tracking to the exchange, thus tracking details are not in the response. 1818 HttpStatus: 500 1819 1820 Value: 2104 1821 Name: MERCHANT_GET_ORDERS_ID_EXCHANGE_LOOKUP_START_FAILURE 1822 Description: The merchant backend failed trying to contact the exchange for tracking details, thus those details are not in the response. 1823 HttpStatus: 500 1824 1825 Value: 2105 1826 Name: MERCHANT_GET_ORDERS_ID_INVALID_TOKEN 1827 Description: The claim token used to authenticate the client is invalid for this order. 1828 HttpStatus: 403 1829 1830 Value: 2106 1831 Name: MERCHANT_GET_ORDERS_ID_INVALID_CONTRACT_HASH 1832 Description: The contract terms hash used to authenticate the client is invalid for this order. 1833 HttpStatus: 403 1834 1835 Value: 2107 1836 Name: MERCHANT_GET_ORDERS_ID_INVALID_CONTRACT_VERSION 1837 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. 1838 HttpStatus: 500 1839 1840 1841 # 2125-2149: multi-factor authentication 1842 1843 Value: 2125 1844 Name: MERCHANT_TAN_CHALLENGE_FAILED 1845 Description: The provided TAN code is invalid for this challenge. 1846 HttpStatus: 409 1847 1848 Value: 2126 1849 Name: MERCHANT_TAN_CHALLENGE_UNKNOWN 1850 Description: The backend is not aware of the specified MFA challenge. 1851 HttpStatus: 404 1852 1853 Value: 2127 1854 Name: MERCHANT_TAN_TOO_MANY_ATTEMPTS 1855 Description: There have been too many attempts to solve the challenge. A new TAN must be requested. 1856 HttpStatus: 429 1857 1858 Value: 2128 1859 Name: MERCHANT_TAN_MFA_HELPER_EXEC_FAILED 1860 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. 1861 HttpStatus: 502 1862 1863 Value: 2129 1864 Name: MERCHANT_TAN_CHALLENGE_SOLVED 1865 Description: The challenge was already solved. Therefore, the service refuses to send it again. 1866 HttpStatus: 410 1867 1868 Value: 2130 1869 Name: MERCHANT_TAN_TOO_EARLY 1870 Description: It is too early to request another transmission of the challenge. The client should wait and see if they received the previous challenge. 1871 HttpStatus: 429 1872 1873 Value: 2131 1874 Name: MERCHANT_MFA_FORBIDDEN 1875 Description: There have been too many attempts to solve MFA. The client may attempt again in the future. 1876 HttpStatus: 403 1877 1878 Value: 2132 1879 Name: MERCHANT_TAN_ADDRESS_UNUSABLE 1880 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. 1881 HttpStatus: 400 1882 1883 Value: 2133 1884 Name: MERCHANT_TAN_ADDRESS_UNREACHABLE 1885 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. 1886 HttpStatus: 503 1887 1888 Value: 2134 1889 Name: MERCHANT_TAN_HELPER_MISCONFIGURED 1890 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. 1891 HttpStatus: 500 1892 1893 # 2150-2199: post orders ID pay endpoint 1894 1895 Value: 2150 1896 Name: MERCHANT_POST_ORDERS_ID_PAY_INSUFFICIENT_FUNDS 1897 Description: The exchange responded saying that funds were insufficient (for example, due to double-spending). 1898 HttpStatus: 409 1899 1900 Value: 2151 1901 Name: MERCHANT_POST_ORDERS_ID_PAY_DENOMINATION_KEY_NOT_FOUND 1902 Description: The denomination key used for payment is not listed among the denomination keys of the exchange. 1903 HttpStatus: 400 1904 1905 Value: 2152 1906 Name: MERCHANT_POST_ORDERS_ID_PAY_DENOMINATION_KEY_AUDITOR_FAILURE 1907 Description: The denomination key used for payment is not audited by an auditor approved by the merchant. 1908 HttpStatus: 400 1909 1910 Value: 2153 1911 Name: MERCHANT_POST_ORDERS_ID_PAY_AMOUNT_OVERFLOW 1912 Description: There was an integer overflow totaling up the amounts or deposit fees in the payment. 1913 HttpStatus: 500 1914 1915 Value: 2154 1916 Name: MERCHANT_POST_ORDERS_ID_PAY_FEES_EXCEED_PAYMENT 1917 Description: The deposit fees exceed the total value of the payment. 1918 HttpStatus: 400 1919 1920 Value: 2155 1921 Name: MERCHANT_POST_ORDERS_ID_PAY_INSUFFICIENT_DUE_TO_FEES 1922 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. 1923 HttpStatus: 400 1924 1925 Value: 2156 1926 Name: MERCHANT_POST_ORDERS_ID_PAY_PAYMENT_INSUFFICIENT 1927 Description: Even without considering deposit and wire fees, the payment is insufficient to satisfy the required amount for the contract. 1928 HttpStatus: 400 1929 1930 Value: 2157 1931 Name: MERCHANT_POST_ORDERS_ID_PAY_COIN_SIGNATURE_INVALID 1932 Description: The signature over the contract of one of the coins was invalid. 1933 HttpStatus: 403 1934 1935 Value: 2158 1936 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_LOOKUP_FAILED 1937 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. 1938 HttpStatus: 500 1939 1940 Value: 2159 1941 Name: MERCHANT_POST_ORDERS_ID_PAY_REFUND_DEADLINE_PAST_WIRE_TRANSFER_DEADLINE 1942 Description: The refund deadline in the contract is after the transfer deadline. 1943 HttpStatus: 500 1944 1945 Value: 2160 1946 Name: MERCHANT_POST_ORDERS_ID_PAY_ALREADY_PAID 1947 Description: The order was already paid (maybe by another wallet). 1948 HttpStatus: 409 1949 1950 Value: 2161 1951 Name: MERCHANT_POST_ORDERS_ID_PAY_OFFER_EXPIRED 1952 Description: The payment is too late, the offer has expired. 1953 HttpStatus: 410 1954 1955 Value: 2162 1956 Name: MERCHANT_POST_ORDERS_ID_PAY_MERCHANT_FIELD_MISSING 1957 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. 1958 HttpStatus: 500 1959 1960 Value: 2163 1961 Name: MERCHANT_POST_ORDERS_ID_PAY_WIRE_HASH_UNKNOWN 1962 Description: Failed to locate merchant's account information matching the wire hash given in the proposal. 1963 HttpStatus: 500 1964 1965 Value: 2165 1966 Name: MERCHANT_POST_ORDERS_ID_PAY_DENOMINATION_DEPOSIT_EXPIRED 1967 Description: The deposit time for the denomination has expired. 1968 HttpStatus: 410 1969 1970 Value: 2166 1971 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_WIRE_FEE_ADDITION_FAILED 1972 Description: The exchange of the deposited coin charges a wire fee that could not be added to the total (total amount too high). 1973 HttpStatus: 500 1974 1975 Value: 2167 1976 Name: MERCHANT_POST_ORDERS_ID_PAY_REFUNDED 1977 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. 1978 HttpStatus: 402 1979 1980 Value: 2168 1981 Name: MERCHANT_POST_ORDERS_ID_PAY_REFUNDS_EXCEED_PAYMENTS 1982 Description: The database indicates that more was refunded than was paid, which should not be possible. 1983 HttpStatus: 500 1984 1985 Value: 2169 1986 Name: MERCHANT_PRIVATE_POST_REFUND_AFTER_WIRE_DEADLINE 1987 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. 1988 HttpStatus: 410 1989 1990 Value: 2170 1991 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_FAILED 1992 Description: The payment failed at the exchange. 1993 HttpStatus: 502 1994 1995 Value: 2171 1996 Name: MERCHANT_POST_ORDERS_ID_PAY_AGE_COMMITMENT_MISSING 1997 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. 1998 HttpStatus: 400 1999 2000 Value: 2172 2001 Name: MERCHANT_POST_ORDERS_ID_PAY_AGE_COMMITMENT_SIZE_MISMATCH 2002 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. 2003 HttpStatus: 400 2004 2005 Value: 2173 2006 Name: MERCHANT_POST_ORDERS_ID_PAY_AGE_VERIFICATION_FAILED 2007 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. 2008 HttpStatus: 400 2009 2010 Value: 2174 2011 Name: MERCHANT_POST_ORDERS_ID_PAY_AGE_COMMITMENT_HASH_MISSING 2012 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. 2013 HttpStatus: 400 2014 2015 Value: 2175 2016 Name: MERCHANT_POST_ORDERS_ID_PAY_WIRE_METHOD_UNSUPPORTED 2017 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. 2018 HttpStatus: 409 2019 2020 Value: 2176 2021 Name: MERCHANT_POST_ORDERS_ID_PAY_CHOICE_INDEX_MISSING 2022 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. 2023 HttpStatus: 400 2024 2025 Value: 2177 2026 Name: MERCHANT_POST_ORDERS_ID_PAY_CHOICE_INDEX_OUT_OF_BOUNDS 2027 Description: The 'choice_index' field is invalid. 2028 HttpStatus: 400 2029 2030 Value: 2178 2031 Name: MERCHANT_POST_ORDERS_ID_PAY_INPUT_TOKENS_MISMATCH 2032 Description: The provided 'tokens' array does not match with the required input tokens of the order. 2033 HttpStatus: 400 2034 2035 Value: 2179 2036 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_ISSUE_SIG_INVALID 2037 Description: Invalid token issue signature (blindly signed by merchant) for provided token. 2038 HttpStatus: 400 2039 2040 Value: 2180 2041 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_USE_SIG_INVALID 2042 Description: Invalid token use signature (EdDSA, signed by wallet) for provided token. 2043 HttpStatus: 400 2044 2045 Value: 2181 2046 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_COUNT_MISMATCH 2047 Description: The provided number of tokens does not match the required number. 2048 HttpStatus: 400 2049 2050 Value: 2182 2051 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_ENVELOPE_COUNT_MISMATCH 2052 Description: The provided number of token envelopes does not match the specified number. 2053 HttpStatus: 400 2054 2055 Value: 2183 2056 Name: MERCHANT_POST_ORDERS_ID_PAY_TOKEN_INVALID 2057 Description: Invalid token because it was already used, is expired or not yet valid. 2058 HttpStatus: 409 2059 2060 Value: 2184 2061 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_TRANSACTION_LIMIT_VIOLATION 2062 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. 2063 HttpStatus: 400 2064 2065 Value: 2185 2066 Name: MERCHANT_POST_ORDERS_ID_PAY_DONATION_AMOUNT_MISMATCH 2067 Description: The donation amount provided in the BKPS does not match the amount of the order choice. 2068 HttpStatus: 409 2069 2070 Value: 2186 2071 Name: MERCHANT_POST_ORDERS_ID_PAY_EXCHANGE_LEGALLY_REFUSED 2072 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. 2073 HttpStatus: 451 2074 2075 Value: 2187 2076 Name: MERCHANT_POST_ORDERS_ID_PAY_CHOICE_INDEX_MISMATCH 2077 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. 2078 HttpStatus: 409 2079 2080 # 2200-2224: post orders ID paid endpoint 2081 2082 Value: 2200 2083 Name: MERCHANT_POST_ORDERS_ID_PAID_CONTRACT_HASH_MISMATCH 2084 Description: The contract hash does not match the given order ID. 2085 HttpStatus: 400 2086 2087 Value: 2201 2088 Name: MERCHANT_POST_ORDERS_ID_PAID_COIN_SIGNATURE_INVALID 2089 Description: The signature of the merchant is not valid for the given contract hash. 2090 HttpStatus: 403 2091 2092 # 2225-2249: token families endpoints 2093 2094 Value: 2225 2095 Name: MERCHANT_POST_TOKEN_FAMILY_CONFLICT 2096 Description: A token family with this ID but conflicting data exists. 2097 HttpStatus: 409 2098 2099 Value: 2226 2100 Name: MERCHANT_PATCH_TOKEN_FAMILY_NOT_FOUND 2101 Description: The backend is unaware of a token family with the given ID. 2102 HttpStatus: 404 2103 2104 2105 # 2250-2256: post orders ID abort endpoint 2106 2107 Value: 2251 2108 Name: MERCHANT_POST_ORDERS_ID_ABORT_EXCHANGE_REFUND_FAILED 2109 Description: The merchant failed to send the exchange the refund request. 2110 HttpStatus: 500 2111 2112 Value: 2252 2113 Name: MERCHANT_POST_ORDERS_ID_ABORT_EXCHANGE_LOOKUP_FAILED 2114 Description: The merchant failed to find the exchange to process the lookup. 2115 HttpStatus: 500 2116 2117 Value: 2253 2118 Name: MERCHANT_POST_ORDERS_ID_ABORT_CONTRACT_NOT_FOUND 2119 Description: The merchant could not find the contract. 2120 HttpStatus: 404 2121 2122 Value: 2254 2123 Name: MERCHANT_POST_ORDERS_ID_ABORT_REFUND_REFUSED_PAYMENT_COMPLETE 2124 Description: The payment was already completed and thus cannot be aborted anymore. 2125 HttpStatus: 412 2126 2127 Value: 2255 2128 Name: MERCHANT_POST_ORDERS_ID_ABORT_CONTRACT_HASH_MISSMATCH 2129 Description: The hash provided by the wallet does not match the order. 2130 HttpStatus: 403 2131 2132 Value: 2256 2133 Name: MERCHANT_POST_ORDERS_ID_ABORT_COINS_ARRAY_EMPTY 2134 Description: The array of coins cannot be empty. 2135 HttpStatus: 400 2136 2137 2138 Value: 2258 2139 Name: MERCHANT_EXCHANGE_TRANSFERS_AWAITING_KEYS 2140 Description: The merchant is waiting for the exchange to provide key material before checking the wire transfer. 2141 HttpStatus: 202 2142 2143 Value: 2259 2144 Name: MERCHANT_EXCHANGE_TRANSFERS_AWAITING_LIST 2145 Description: The merchant is waiting for the exchange to provide the list of aggregated transactions. 2146 HttpStatus: 202 2147 2148 Value: 2260 2149 Name: MERCHANT_EXCHANGE_TRANSFERS_FATAL_NO_EXCHANGE 2150 Description: The endpoint indicated in the wire transfer does not belong to a GNU Taler exchange. 2151 HttpStatus: 200 2152 2153 Value: 2261 2154 Name: MERCHANT_EXCHANGE_TRANSFERS_FATAL_NOT_FOUND 2155 Description: The exchange indicated in the wire transfer claims to know nothing about the wire transfer. 2156 HttpStatus: 0 2157 2158 Value: 2262 2159 Name: MERCHANT_EXCHANGE_TRANSFERS_RATE_LIMITED 2160 Description: The interaction with the exchange is delayed due to rate limiting. 2161 HttpStatus: 202 2162 2163 Value: 2263 2164 Name: MERCHANT_EXCHANGE_TRANSFERS_TRANSIENT_FAILURE 2165 Description: The merchant experienced a transient failure while interacting with the exchange. 2166 HttpStatus: 202 2167 2168 Value: 2264 2169 Name: MERCHANT_EXCHANGE_TRANSFERS_HARD_FAILURE 2170 Description: The response from the exchange was unacceptable and should be reviewed with an auditor. 2171 HttpStatus: 200 2172 2173 2174 # 2275-2299: post accounts KYCAUTH endpoint 2175 2176 Value: 2275 2177 Name: MERCHANT_POST_ACCOUNTS_KYCAUTH_BANK_GATEWAY_UNREACHABLE 2178 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. 2179 HttpStatus: 502 2180 2181 Value: 2276 2182 Name: MERCHANT_POST_ACCOUNTS_EXCHANGE_TOO_OLD 2183 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. 2184 HttpStatus: 502 2185 2186 Value: 2277 2187 Name: MERCHANT_POST_ACCOUNTS_KYCAUTH_EXCHANGE_UNREACHABLE 2188 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. 2189 HttpStatus: 502 2190 2191 2192 2193 # 2300-2349: post orders ID claim endpoint 2194 2195 Value: 2300 2196 Name: MERCHANT_POST_ORDERS_ID_CLAIM_NOT_FOUND 2197 Description: The order could not be claimed because the backend is unaware of it. 2198 HttpStatus: 404 2199 2200 Value: 2301 2201 Name: MERCHANT_POST_ORDERS_ID_CLAIM_ALREADY_CLAIMED 2202 Description: The order could not be claimed because another client claimed it first. 2203 HttpStatus: 409 2204 2205 Value: 2302 2206 Name: MERCHANT_POST_ORDERS_ID_CLAIM_CLIENT_INTERNAL_FAILURE 2207 Description: The client experienced an internal failure. 2208 HttpStatus: 0 2209 2210 Value: 2303 2211 Name: MERCHANT_POST_ORDERS_UNCLAIM_SIGNATURE_INVALID 2212 Description: The unclaim signature of the wallet is not valid for the given contract hash. 2213 HttpStatus: 403 2214 2215 2216 # 2350-2399: post orders ID refund endpoint 2217 2218 Value: 2350 2219 Name: MERCHANT_POST_ORDERS_ID_REFUND_SIGNATURE_FAILED 2220 Description: The backend failed to sign the refund request. 2221 HttpStatus: 0 2222 2223 2224 2225 # 2400-2449: reward pickup endpoint 2226 2227 Value: 2400 2228 Name: MERCHANT_REWARD_PICKUP_UNBLIND_FAILURE 2229 Description: The client failed to unblind the signature returned by the merchant. 2230 HttpStatus: 0 2231 2232 2233 2234 Value: 2403 2235 Name: MERCHANT_REWARD_PICKUP_EXCHANGE_ERROR 2236 Description: The exchange returned a failure code for the withdraw operation. 2237 HttpStatus: 502 2238 2239 2240 Value: 2404 2241 Name: MERCHANT_REWARD_PICKUP_SUMMATION_FAILED 2242 Description: The merchant failed to add up the amounts to compute the pick up value. 2243 HttpStatus: 500 2244 2245 Value: 2405 2246 Name: MERCHANT_REWARD_PICKUP_HAS_EXPIRED 2247 Description: The reward expired. 2248 HttpStatus: 410 2249 2250 Value: 2406 2251 Name: MERCHANT_REWARD_PICKUP_AMOUNT_EXCEEDS_REWARD_REMAINING 2252 Description: The requested withdraw amount exceeds the amount remaining to be picked up. 2253 HttpStatus: 400 2254 2255 Value: 2407 2256 Name: MERCHANT_REWARD_PICKUP_DENOMINATION_UNKNOWN 2257 Description: The merchant did not find the specified denomination key in the exchange's key set. 2258 HttpStatus: 409 2259 2260 # 2450-2499: available for future public endpoint 2261 2262 # 2500-2999: private API 2263 # 2500-2549: order operations 2264 2265 Value: 2500 2266 Name: MERCHANT_PRIVATE_POST_ORDERS_INSTANCE_CONFIGURATION_LACKS_WIRE 2267 Description: The merchant instance has no active bank accounts configured. However, at least one bank account must be available to create new orders. 2268 HttpStatus: 404 2269 2270 Value: 2501 2271 Name: MERCHANT_PRIVATE_POST_ORDERS_NO_LOCALTIME 2272 Description: The proposal had no timestamp and the merchant backend failed to obtain the current local time. 2273 HttpStatus: 500 2274 2275 Value: 2502 2276 Name: MERCHANT_PRIVATE_POST_ORDERS_PROPOSAL_PARSE_ERROR 2277 Description: The order provided to the backend could not be parsed; likely some required fields were missing or ill-formed. 2278 HttpStatus: 400 2279 2280 Value: 2503 2281 Name: MERCHANT_PRIVATE_POST_ORDERS_ALREADY_EXISTS 2282 Description: A conflicting order (sharing the same order identifier) already exists at this merchant backend instance. 2283 HttpStatus: 409 2284 2285 Value: 2504 2286 Name: MERCHANT_PRIVATE_POST_ORDERS_REFUND_AFTER_WIRE_DEADLINE 2287 Description: The order creation request is invalid because the given wire deadline is before the refund deadline. 2288 HttpStatus: 400 2289 2290 Value: 2505 2291 Name: MERCHANT_PRIVATE_POST_ORDERS_DELIVERY_DATE_IN_PAST 2292 Description: The order creation request is invalid because the delivery date given is in the past. 2293 HttpStatus: 400 2294 2295 Value: 2506 2296 Name: MERCHANT_PRIVATE_POST_ORDERS_WIRE_DEADLINE_IS_NEVER 2297 Description: The order creation request is invalid because a wire deadline of `never` is not allowed. 2298 HttpStatus: 400 2299 2300 Value: 2507 2301 Name: MERCHANT_PRIVATE_POST_ORDERS_PAY_DEADLINE_IN_PAST 2302 Description: The order creation request is invalid because the given payment deadline is in the past. 2303 HttpStatus: 400 2304 2305 Value: 2508 2306 Name: MERCHANT_PRIVATE_POST_ORDERS_REFUND_DEADLINE_IN_PAST 2307 Description: The order creation request is invalid because the given refund deadline is in the past. 2308 HttpStatus: 400 2309 2310 Value: 2509 2311 Name: MERCHANT_PRIVATE_POST_ORDERS_NO_EXCHANGES_FOR_WIRE_METHOD 2312 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. 2313 HttpStatus: 409 2314 2315 Value: 2510 2316 Name: MERCHANT_PRIVATE_PATCH_ORDERS_ID_FORGET_PATH_SYNTAX_INCORRECT 2317 Description: One of the paths to forget is malformed. 2318 HttpStatus: 400 2319 2320 Value: 2511 2321 Name: MERCHANT_PRIVATE_PATCH_ORDERS_ID_FORGET_PATH_NOT_FORGETTABLE 2322 Description: One of the paths to forget was not marked as forgettable. 2323 HttpStatus: 409 2324 2325 Value: 2512 2326 Name: MERCHANT_POST_ORDERS_ID_REFUND_EXCHANGE_TRANSACTION_LIMIT_VIOLATION 2327 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. 2328 HttpStatus: 451 2329 2330 Value: 2513 2331 Name: MERCHANT_PRIVATE_POST_ORDERS_AMOUNT_EXCEEDS_LEGAL_LIMITS 2332 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. 2333 HttpStatus: 451 2334 2335 Value: 2514 2336 Name: MERCHANT_PRIVATE_POST_ORDERS_NO_EXCHANGE_FOR_CURRENCY 2337 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. 2338 HttpStatus: 409 2339 2340 2341 # 2200-2224: post orders ID paid endpoint 2342 Value: 2520 2343 Name: MERCHANT_PRIVATE_DELETE_ORDERS_AWAITING_PAYMENT 2344 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. 2345 HttpStatus: 409 2346 2347 Value: 2521 2348 Name: MERCHANT_PRIVATE_DELETE_ORDERS_ALREADY_PAID 2349 Description: The order provided to the backend could not be deleted as the order was already paid. 2350 HttpStatus: 409 2351 2352 Value: 2525 2353 Name: MERCHANT_PRIVATE_GET_STATISTICS_REPORT_GRANULARITY_UNAVAILABLE 2354 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. 2355 HttpStatus: 410 2356 2357 Value: 2530 2358 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_INCONSISTENT_AMOUNT 2359 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. 2360 HttpStatus: 409 2361 2362 Value: 2531 2363 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_ORDER_UNPAID 2364 Description: Only paid orders can be refunded, and the frontend specified an unpaid order to issue a refund for. 2365 HttpStatus: 409 2366 2367 Value: 2532 2368 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_NOT_ALLOWED_BY_CONTRACT 2369 Description: The refund delay was set to 0 and thus no refunds are ever allowed for this order. 2370 HttpStatus: 403 2371 2372 Value: 2533 2373 Name: MERCHANT_PRIVATE_POST_ORDERS_TOKEN_FAMILY_SLUG_UNKNOWN 2374 Description: The token family slug provided in this order could not be found in the merchant database. 2375 HttpStatus: 404 2376 2377 Value: 2534 2378 Name: MERCHANT_PRIVATE_POST_ORDERS_TOKEN_FAMILY_NOT_VALID 2379 Description: A token family referenced in this order is either expired or not valid yet. 2380 HttpStatus: 409 2381 2382 Value: 2535 2383 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_COLLECT_NOT_FREE 2384 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. 2385 HttpStatus: 409 2386 2387 Value: 2536 2388 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_COLLECT_ALREADY_CLAIMED 2389 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. 2390 HttpStatus: 409 2391 2392 Value: 2537 2393 Name: MERCHANT_PRIVATE_DELETE_ORDERS_EXTERNALLY_PAID 2394 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. 2395 HttpStatus: 409 2396 2397 Value: 2538 2398 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_EXTERNAL_INCONSISTENT_AMOUNT 2399 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. 2400 HttpStatus: 409 2401 2402 Value: 2539 2403 Name: MERCHANT_PRIVATE_POST_ORDERS_ID_REFUND_EXTERNAL_ALREADY_EXISTS 2404 Description: An external refund with the same identifier was already recorded for this order, but with different details. 2405 HttpStatus: 409 2406 2407 # 2550-2569: transfer operations 2408 2409 Value: 2550 2410 Name: MERCHANT_PRIVATE_POST_TRANSFERS_EXCHANGE_UNKNOWN 2411 Description: The exchange says it does not know this transfer. 2412 HttpStatus: 502 2413 2414 Value: 2551 2415 Name: MERCHANT_PRIVATE_POST_TRANSFERS_REQUEST_ERROR 2416 Description: The backend failed to execute the `/track/transfer` request internally. 2417 HttpStatus: 502 2418 2419 Value: 2552 2420 Name: MERCHANT_PRIVATE_POST_TRANSFERS_CONFLICTING_TRANSFERS 2421 Description: The amount transferred differs between what was submitted and what the exchange claimed. 2422 HttpStatus: 409 2423 2424 Value: 2553 2425 Name: MERCHANT_PRIVATE_POST_TRANSFERS_CONFLICTING_REPORTS 2426 Description: The exchange gave conflicting information about a coin which has been wire transferred. 2427 HttpStatus: 409 2428 2429 Value: 2554 2430 Name: MERCHANT_PRIVATE_POST_TRANSFERS_BAD_WIRE_FEE 2431 Description: The exchange charged a different wire fee than what it originally advertised, and it is higher. 2432 HttpStatus: 502 2433 2434 Value: 2555 2435 Name: MERCHANT_PRIVATE_POST_TRANSFERS_ACCOUNT_NOT_FOUND 2436 Description: The backend did not find the account to which the transfer was made. 2437 HttpStatus: 404 2438 2439 Value: 2556 2440 Name: MERCHANT_PRIVATE_DELETE_TRANSFERS_ALREADY_CONFIRMED 2441 Description: The backend could not delete the transfer because the exchange already responded to the inquiry and the result was integrated. 2442 HttpStatus: 409 2443 2444 Value: 2557 2445 Name: MERCHANT_PRIVATE_POST_TRANSFERS_CONFLICTING_SUBMISSION 2446 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. 2447 HttpStatus: 409 2448 2449 Value: 2558 2450 Name: MERCHANT_EXCHANGE_TRANSFERS_TARGET_ACCOUNT_UNKNOWN 2451 Description: The target bank account given by the exchange is not (or no longer) known at the merchant instance. 2452 HttpStatus: 0 2453 2454 Value: 2563 2455 Name: MERCHANT_EXCHANGE_TRANSFERS_CONFLICTING_TRANSFERS 2456 Description: The amount transferred differs between what was submitted and what the exchange claimed. 2457 HttpStatus: 0 2458 2459 2460 Value: 2570 2461 Name: MERCHANT_REPORT_GENERATOR_FAILED 2462 Description: The report ID provided to the backend is not known to the backend. 2463 HttpStatus: 501 2464 2465 Value: 2571 2466 Name: MERCHANT_REPORT_FETCH_FAILED 2467 Description: Failed to fetch the data for the report from the backend. 2468 HttpStatus: 502 2469 2470 2471 # 2600-2649: instance operations 2472 2473 Value: 2600 2474 Name: MERCHANT_PRIVATE_POST_INSTANCES_ALREADY_EXISTS 2475 Description: The merchant backend cannot create an instance under the given identifier as one already exists. Use PATCH to modify the existing entry. 2476 HttpStatus: 409 2477 2478 Value: 2601 2479 Name: MERCHANT_PRIVATE_POST_INSTANCES_BAD_AUTH 2480 Description: The merchant backend cannot create an instance because the authentication configuration field is malformed. 2481 HttpStatus: 400 2482 2483 Value: 2602 2484 Name: MERCHANT_PRIVATE_POST_INSTANCE_AUTH_BAD_AUTH 2485 Description: The merchant backend cannot update an instance's authentication settings because the provided authentication settings are malformed. 2486 HttpStatus: 400 2487 2488 Value: 2603 2489 Name: MERCHANT_PRIVATE_POST_INSTANCES_PURGE_REQUIRED 2490 Description: The merchant backend cannot create an instance under the given identifier, the previous one was deleted but must be purged first. 2491 HttpStatus: 409 2492 2493 Value: 2604 2494 Name: MERCHANT_PRIVATE_POST_INSTANCE_AUTH_BAD_OLD_PASSWORD 2495 Description: The merchant backend cannot update an instance's authentication settings because the required current password was missing or did not match. 2496 HttpStatus: 401 2497 2498 Value: 2625 2499 Name: MERCHANT_PRIVATE_PATCH_INSTANCES_PURGE_REQUIRED 2500 Description: The merchant backend cannot update an instance under the given identifier, the previous one was deleted but must be purged first. 2501 HttpStatus: 409 2502 2503 Value: 2626 2504 Name: MERCHANT_PRIVATE_ACCOUNT_DELETE_UNKNOWN_ACCOUNT 2505 Description: The bank account referenced in the requested operation was not found. 2506 HttpStatus: 404 2507 2508 Value: 2627 2509 Name: MERCHANT_PRIVATE_ACCOUNT_EXISTS 2510 Description: The bank account specified in the request already exists at the merchant. 2511 HttpStatus: 409 2512 2513 Value: 2628 2514 Name: MERCHANT_PRIVATE_ACCOUNT_NOT_ELIGIBLE_FOR_EXCHANGE 2515 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. 2516 HttpStatus: 409 2517 2518 2519 # 2650-2699: product operations 2520 2521 Value: 2650 2522 Name: MERCHANT_PRIVATE_POST_PRODUCTS_CONFLICT_PRODUCT_EXISTS 2523 Description: The product ID exists. 2524 HttpStatus: 409 2525 2526 Value: 2651 2527 Name: MERCHANT_PRIVATE_POST_CATEGORIES_CONFLICT_CATEGORY_EXISTS 2528 Description: A category with the same name exists already. 2529 HttpStatus: 409 2530 2531 Value: 2660 2532 Name: MERCHANT_PRIVATE_PATCH_PRODUCTS_TOTAL_LOST_REDUCED 2533 Description: The update would have reduced the total amount of product lost, which is not allowed. 2534 HttpStatus: 409 2535 2536 Value: 2661 2537 Name: MERCHANT_PRIVATE_PATCH_PRODUCTS_TOTAL_LOST_EXCEEDS_STOCKS 2538 Description: The update would have mean that more stocks were lost than what remains from total inventory after sales, which is not allowed. 2539 HttpStatus: 400 2540 2541 Value: 2662 2542 Name: MERCHANT_PRIVATE_PATCH_PRODUCTS_TOTAL_STOCKED_REDUCED 2543 Description: The update would have reduced the total amount of product in stock, which is not allowed. 2544 HttpStatus: 409 2545 2546 Value: 2663 2547 Name: MERCHANT_PRIVATE_PATCH_PRODUCTS_TOTAL_SOLD_REDUCED 2548 Description: The update would have reduced the total amount of product sold, which is not allowed. 2549 HttpStatus: 409 2550 2551 Value: 2670 2552 Name: MERCHANT_PRIVATE_POST_PRODUCTS_LOCK_INSUFFICIENT_STOCKS 2553 Description: The lock request is for more products than we have left (unlocked) in stock. 2554 HttpStatus: 410 2555 2556 Value: 2680 2557 Name: MERCHANT_PRIVATE_DELETE_PRODUCTS_CONFLICTING_LOCK 2558 Description: The deletion request is for a locked product. The product cannot be deleted until the existing offer expires. 2559 HttpStatus: 409 2560 2561 Value: 2690 2562 Name: MERCHANT_PRIVATE_PRODUCT_GROUP_CONFLICTING_NAME 2563 Description: The proposed name for the product group is already in use. The client should select a different name. 2564 HttpStatus: 409 2565 2566 Value: 2691 2567 Name: MERCHANT_PRIVATE_MONEY_POT_CONFLICTING_NAME 2568 Description: The proposed name for the money pot is already in use. The client should select a different name. 2569 HttpStatus: 409 2570 2571 Value: 2692 2572 Name: MERCHANT_PRIVATE_MONEY_POT_CONFLICTING_TOTAL 2573 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. 2574 HttpStatus: 409 2575 2576 # 2700-2749: reserve operations 2577 2578 Value: 2700 2579 Name: MERCHANT_PRIVATE_POST_RESERVES_UNSUPPORTED_WIRE_METHOD 2580 Description: The requested wire method is not supported by the exchange. 2581 HttpStatus: 409 2582 2583 Value: 2701 2584 Name: MERCHANT_PRIVATE_POST_RESERVES_REWARDS_NOT_ALLOWED 2585 Description: The requested exchange does not allow rewards. 2586 HttpStatus: 409 2587 2588 Value: 2710 2589 Name: MERCHANT_PRIVATE_DELETE_RESERVES_NO_SUCH_RESERVE 2590 Description: The reserve could not be deleted because it is unknown. 2591 HttpStatus: 404 2592 2593 # 2750-2799: reward authorization 2594 2595 Value: 2750 2596 Name: MERCHANT_PRIVATE_POST_REWARD_AUTHORIZE_RESERVE_EXPIRED 2597 Description: The reserve that was used to fund the rewards has expired. 2598 HttpStatus: 410 2599 2600 Value: 2751 2601 Name: MERCHANT_PRIVATE_POST_REWARD_AUTHORIZE_RESERVE_UNKNOWN 2602 Description: The reserve that was used to fund the rewards was not found in the DB. 2603 HttpStatus: 503 2604 2605 Value: 2752 2606 Name: MERCHANT_PRIVATE_POST_REWARD_AUTHORIZE_INSUFFICIENT_FUNDS 2607 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. 2608 HttpStatus: 0 2609 2610 Value: 2753 2611 Name: MERCHANT_PRIVATE_POST_REWARD_AUTHORIZE_RESERVE_NOT_FOUND 2612 Description: The backend failed to find a reserve needed to authorize the reward. 2613 HttpStatus: 503 2614 2615 Value: 2800 2616 Name: MERCHANT_PRIVATE_GET_ORDERS_ID_AMOUNT_ARITHMETIC_FAILURE 2617 Description: The merchant backend encountered a failure in computing the deposit total. 2618 HttpStatus: 200 2619 2620 # 2850-2899: template and OTP device operations 2621 2622 Value: 2850 2623 Name: MERCHANT_PRIVATE_POST_TEMPLATES_CONFLICT_TEMPLATE_EXISTS 2624 Description: The template ID already exists. 2625 HttpStatus: 409 2626 2627 Value: 2851 2628 Name: MERCHANT_PRIVATE_POST_OTP_DEVICES_CONFLICT_OTP_DEVICE_EXISTS 2629 Description: The OTP device ID already exists. 2630 HttpStatus: 409 2631 2632 Value: 2860 2633 Name: MERCHANT_POST_USING_TEMPLATES_AMOUNT_CONFLICT_TEMPLATES_CONTRACT_AMOUNT 2634 Description: Amount given in the using template and in the template contract. There is a conflict. 2635 HttpStatus: 409 2636 2637 Value: 2861 2638 Name: MERCHANT_POST_USING_TEMPLATES_SUMMARY_CONFLICT_TEMPLATES_CONTRACT_SUBJECT 2639 Description: Subject given in the using template and in the template contract. There is a conflict. 2640 HttpStatus: 409 2641 2642 Value: 2862 2643 Name: MERCHANT_POST_USING_TEMPLATES_NO_AMOUNT 2644 Description: Amount not given in the using template and in the template contract. There is a conflict. 2645 HttpStatus: 409 2646 2647 Value: 2863 2648 Name: MERCHANT_POST_USING_TEMPLATES_NO_SUMMARY 2649 Description: Subject not given in the using template and in the template contract. There is a conflict. 2650 HttpStatus: 409 2651 2652 Value: 2864 2653 Name: MERCHANT_POST_USING_TEMPLATES_WRONG_TYPE 2654 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. 2655 HttpStatus: 409 2656 2657 Value: 2865 2658 Name: MERCHANT_POST_USING_TEMPLATES_WRONG_PRODUCT 2659 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. 2660 HttpStatus: 409 2661 2662 Value: 2866 2663 Name: MERCHANT_POST_USING_TEMPLATES_NO_CURRENCY 2664 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. 2665 HttpStatus: 409 2666 2667 2668 # 2900-2949: webhook operations 2669 2670 Value: 2900 2671 Name: MERCHANT_PRIVATE_POST_WEBHOOKS_CONFLICT_WEBHOOK_EXISTS 2672 Description: The webhook ID elready exists. 2673 HttpStatus: 409 2674 2675 Value: 2910 2676 Name: MERCHANT_PRIVATE_POST_PENDING_WEBHOOKS_CONFLICT_PENDING_WEBHOOK_EXISTS 2677 Description: The webhook serial elready exists. 2678 HttpStatus: 409 2679 2680 2681 # 2950-2999: fountain operations (DD 98) 2682 2683 Value: 2950 2684 Name: MERCHANT_POST_FOUNTAIN_WITHDRAW_GRANT_UNKNOWN 2685 Description: A withdrawal entry refers to a token family without a matching grant in the fountain. 2686 HttpStatus: 409 2687 2688 Value: 2951 2689 Name: MERCHANT_POST_FOUNTAIN_WITHDRAW_SLOT_OUTSIDE_WINDOW 2690 Description: The desired token validity time selects an issue key slot outside of the grant's key window. 2691 HttpStatus: 409 2692 2693 Value: 2952 2694 Name: MERCHANT_POST_FOUNTAIN_WITHDRAW_LIMIT_EXCEEDED 2695 Description: The grant's per-period withdrawal limit is exhausted for the requested issue key slot. 2696 HttpStatus: 429 2697 2698 2699 2700 2701 2702 # 3000 - 3999: Reserved for auditor 2703 # 3000 - 3099: Reserved for AUDITOR_GENERIC 2704 2705 Value: 3001 2706 Name: AUDITOR_GENERIC_UNAUTHORIZED 2707 Description: The auditor refused the connection due to a lack of authorization. 2708 HttpStatus: 401 2709 2710 Value: 3002 2711 Name: AUDITOR_GENERIC_METHOD_NOT_ALLOWED 2712 Description: This method is not allowed here. 2713 HttpStatus: 405 2714 2715 Value: 3100 2716 Name: AUDITOR_DEPOSIT_CONFIRMATION_SIGNATURE_INVALID 2717 Description: The signature from the exchange on the deposit confirmation is invalid. 2718 HttpStatus: 403 2719 2720 Value: 3101 2721 Name: AUDITOR_EXCHANGE_SIGNING_KEY_REVOKED 2722 Description: The exchange key used for the signature on the deposit confirmation was revoked. 2723 HttpStatus: 410 2724 2725 Value: 3102 2726 Name: AUDITOR_RESOURCE_NOT_FOUND 2727 Description: The requested resource could not be found. 2728 HttpStatus: 404 2729 2730 Value: 3103 2731 Name: AUDITOR_URI_MISSING_PATH_COMPONENT 2732 Description: The URI is missing a path component. 2733 HttpStatus: 400 2734 2735 2736 # 5000 - 5999: Reserved for bank 2737 # 5000 - 5099: Reserved for BANK_GENERIC 2738 2739 Value: 5101 2740 Name: BANK_SAME_ACCOUNT 2741 Description: Wire transfer attempted with credit and debit party being the same bank account. 2742 HttpStatus: 400 2743 2744 Value: 5102 2745 Name: BANK_UNALLOWED_DEBIT 2746 Description: Wire transfer impossible, due to financial limitation of the party that attempted the payment. 2747 HttpStatus: 409 2748 2749 Value: 5103 2750 Name: BANK_NEGATIVE_NUMBER_AMOUNT 2751 Description: Negative numbers are not allowed (as value and/or fraction) to instantiate an amount object. 2752 HttpStatus: 400 2753 2754 Value: 5104 2755 Name: BANK_NUMBER_TOO_BIG 2756 Description: A too big number was used (as value and/or fraction) to instantiate an amount object. 2757 HttpStatus: 400 2758 2759 Value: 5106 2760 Name: BANK_UNKNOWN_ACCOUNT 2761 Description: The bank account referenced in the requested operation was not found. 2762 HttpStatus: 404 2763 2764 Value: 5107 2765 Name: BANK_TRANSACTION_NOT_FOUND 2766 Description: The transaction referenced in the requested operation (typically a reject operation), was not found. 2767 HttpStatus: 404 2768 2769 Value: 5108 2770 Name: BANK_BAD_FORMAT_AMOUNT 2771 Description: Bank received a malformed amount string. 2772 HttpStatus: 400 2773 2774 Value: 5109 2775 Name: BANK_REJECT_NO_RIGHTS 2776 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. 2777 HttpStatus: 403 2778 2779 Value: 5110 2780 Name: BANK_UNMANAGED_EXCEPTION 2781 Description: This error code is returned when no known exception types captured the exception. 2782 HttpStatus: 500 2783 2784 Value: 5111 2785 Name: BANK_SOFT_EXCEPTION 2786 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. 2787 HttpStatus: 500 2788 2789 Value: 5112 2790 Name: BANK_TRANSFER_REQUEST_UID_REUSED 2791 Description: The request UID for a request to transfer funds has already been used, but with different details for the transfer. 2792 HttpStatus: 409 2793 2794 Value: 5113 2795 Name: BANK_WITHDRAWAL_OPERATION_RESERVE_SELECTION_CONFLICT 2796 Description: The withdrawal operation already has a reserve selected. The current request conflicts with the existing selection. 2797 HttpStatus: 409 2798 2799 Value: 5114 2800 Name: BANK_DUPLICATE_RESERVE_PUB_SUBJECT 2801 Description: The wire transfer subject duplicates an existing reserve public key. But wire transfer subjects must be unique. 2802 HttpStatus: 409 2803 2804 Value: 5115 2805 Name: BANK_ANCIENT_TRANSACTION_GONE 2806 Description: The client requested a transaction that is so far in the past, that it has been forgotten by the bank. 2807 HttpStatus: 410 2808 2809 Value: 5116 2810 Name: BANK_ABORT_CONFIRM_CONFLICT 2811 Description: The client attempted to abort a transaction that was already confirmed. 2812 HttpStatus: 409 2813 2814 Value: 5117 2815 Name: BANK_CONFIRM_ABORT_CONFLICT 2816 Description: The client attempted to confirm a transaction that was already aborted. 2817 HttpStatus: 409 2818 2819 Value: 5118 2820 Name: BANK_REGISTER_CONFLICT 2821 Description: The client attempted to register an account with the same name. 2822 HttpStatus: 409 2823 2824 Value: 5119 2825 Name: BANK_POST_WITHDRAWAL_OPERATION_REQUIRED 2826 Description: The client attempted to confirm a withdrawal operation before the wallet posted the required details. 2827 HttpStatus: 400 2828 2829 Value: 5120 2830 Name: BANK_RESERVED_USERNAME_CONFLICT 2831 Description: The client tried to register a new account under a reserved username (like 'admin' for example). 2832 HttpStatus: 409 2833 2834 Value: 5121 2835 Name: BANK_REGISTER_USERNAME_REUSE 2836 Description: The client tried to register a new account with an username already in use. 2837 HttpStatus: 409 2838 2839 Value: 5122 2840 Name: BANK_REGISTER_PAYTO_URI_REUSE 2841 Description: The client tried to register a new account with a payto:// URI already in use. 2842 HttpStatus: 409 2843 2844 Value: 5123 2845 Name: BANK_ACCOUNT_BALANCE_NOT_ZERO 2846 Description: The client tried to delete an account with a non null balance. 2847 HttpStatus: 409 2848 2849 Value: 5124 2850 Name: BANK_UNKNOWN_CREDITOR 2851 Description: The client tried to create a transaction or an operation that credit an unknown account. 2852 HttpStatus: 409 2853 2854 Value: 5125 2855 Name: BANK_UNKNOWN_DEBTOR 2856 Description: The client tried to create a transaction or an operation that debit an unknown account. 2857 HttpStatus: 409 2858 2859 Value: 5126 2860 Name: BANK_ACCOUNT_IS_EXCHANGE 2861 Description: The client tried to perform an action prohibited for exchange accounts. 2862 HttpStatus: 409 2863 2864 Value: 5127 2865 Name: BANK_ACCOUNT_IS_NOT_EXCHANGE 2866 Description: The client tried to perform an action reserved for exchange accounts. 2867 HttpStatus: 409 2868 2869 Value: 5128 2870 Name: BANK_BAD_CONVERSION 2871 Description: Received currency conversion is wrong. 2872 HttpStatus: 409 2873 2874 Value: 5129 2875 Name: BANK_MISSING_TAN_INFO 2876 Description: The account referenced in this operation is missing tan info for the chosen channel. 2877 HttpStatus: 409 2878 2879 Value: 5130 2880 Name: BANK_CONFIRM_INCOMPLETE 2881 Description: The client attempted to confirm a transaction with incomplete info. 2882 HttpStatus: 409 2883 2884 Value: 5131 2885 Name: BANK_TAN_RATE_LIMITED 2886 Description: The request rate is too high. The server is refusing requests to guard against brute-force attacks. 2887 HttpStatus: 429 2888 2889 Value: 5132 2890 Name: BANK_TAN_CHANNEL_NOT_SUPPORTED 2891 Description: This TAN channel is not supported. 2892 HttpStatus: 501 2893 2894 Value: 5133 2895 Name: BANK_TAN_CHANNEL_SCRIPT_FAILED 2896 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. 2897 HttpStatus: 500 2898 2899 Value: 5134 2900 Name: BANK_TAN_CHALLENGE_FAILED 2901 Description: The client's response to the challenge was invalid. 2902 HttpStatus: 403 2903 2904 Value: 5135 2905 Name: BANK_NON_ADMIN_PATCH_LEGAL_NAME 2906 Description: A non-admin user has tried to change their legal name. 2907 HttpStatus: 409 2908 2909 Value: 5136 2910 Name: BANK_NON_ADMIN_PATCH_DEBT_LIMIT 2911 Description: A non-admin user has tried to change their debt limit. 2912 HttpStatus: 409 2913 2914 Value: 5137 2915 Name: BANK_NON_ADMIN_PATCH_MISSING_OLD_PASSWORD 2916 Description: A non-admin user tried to change their password without providing the current password. 2917 HttpStatus: 409 2918 2919 Value: 5138 2920 Name: BANK_PATCH_BAD_OLD_PASSWORD 2921 Description: Provided old password does not match current password. 2922 HttpStatus: 409 2923 2924 Value: 5139 2925 Name: BANK_PATCH_ADMIN_EXCHANGE 2926 Description: An admin user has tried to become an exchange. 2927 HttpStatus: 409 2928 2929 Value: 5140 2930 Name: BANK_NON_ADMIN_PATCH_CASHOUT 2931 Description: A non-admin user has tried to change their cashout account. 2932 HttpStatus: 409 2933 2934 Value: 5141 2935 Name: BANK_NON_ADMIN_PATCH_CONTACT 2936 Description: A non-admin user has tried to change their contact info. 2937 HttpStatus: 409 2938 2939 Value: 5142 2940 Name: BANK_ADMIN_CREDITOR 2941 Description: The client tried to create a transaction that credits the administrator's account. 2942 HttpStatus: 409 2943 2944 Value: 5143 2945 Name: BANK_CHALLENGE_NOT_FOUND 2946 Description: The referenced challenge was not found. 2947 HttpStatus: 404 2948 2949 Value: 5144 2950 Name: BANK_TAN_CHALLENGE_EXPIRED 2951 Description: The referenced challenge has expired. 2952 HttpStatus: 409 2953 2954 Value: 5145 2955 Name: BANK_NON_ADMIN_SET_TAN_CHANNEL 2956 Description: A non-admin user has tried to create an account with 2fa. 2957 HttpStatus: 409 2958 2959 Value: 5146 2960 Name: BANK_NON_ADMIN_SET_MIN_CASHOUT 2961 Description: A non-admin user has tried to set their minimum cashout amount. 2962 HttpStatus: 409 2963 2964 Value: 5147 2965 Name: BANK_CONVERSION_AMOUNT_TO_SMALL 2966 Description: The amount of the currency conversion is less than the minimum allowed. 2967 HttpStatus: 409 2968 2969 Value: 5148 2970 Name: BANK_AMOUNT_DIFFERS 2971 Description: Specified amount will not work for this withdrawal. 2972 HttpStatus: 409 2973 2974 Value: 5149 2975 Name: BANK_AMOUNT_REQUIRED 2976 Description: The backend requires an amount to be specified. 2977 HttpStatus: 409 2978 2979 Value: 5150 2980 Name: BANK_PASSWORD_TOO_SHORT 2981 Description: Provided password is too short. 2982 HttpStatus: 409 2983 2984 Value: 5151 2985 Name: BANK_PASSWORD_TOO_LONG 2986 Description: Provided password is too long. 2987 HttpStatus: 409 2988 2989 Value: 5152 2990 Name: BANK_ACCOUNT_LOCKED 2991 Description: The bank account is locked, and the user cannot authenticate with their password. 2992 HttpStatus: 403 2993 2994 Value: 5153 2995 Name: BANK_UPDATE_ABORT_CONFLICT 2996 Description: The client attempted to update the details of a transaction that was already aborted. 2997 HttpStatus: 409 2998 2999 Value: 5154 3000 Name: BANK_TRANSFER_WTID_REUSED 3001 Description: The wtid for a request to transfer funds has already been used, but with a different request unpaid. 3002 HttpStatus: 409 3003 3004 Value: 5155 3005 Name: BANK_NON_ADMIN_SET_CONVERSION_RATE_CLASS 3006 Description: A non-admin user tried to set their conversion rate class. 3007 HttpStatus: 409 3008 3009 Value: 5156 3010 Name: BANK_CONVERSION_RATE_CLASS_UNKNOWN 3011 Description: The referenced conversion rate class was not found. 3012 HttpStatus: 409 3013 3014 Value: 5157 3015 Name: BANK_NAME_REUSE 3016 Description: The client tried to use an already taken name. 3017 HttpStatus: 409 3018 3019 Value: 5158 3020 Name: BANK_UNSUPPORTED_SUBJECT_FORMAT 3021 Description: This subject format is not supported. 3022 HttpStatus: 409 3023 3024 Value: 5159 3025 Name: BANK_DERIVATION_REUSE 3026 Description: The derived subject is already used. 3027 HttpStatus: 409 3028 3029 Value: 5160 3030 Name: BANK_BAD_SIGNATURE 3031 Description: The provided signature is invalid. 3032 HttpStatus: 403 3033 3034 Value: 5161 3035 Name: BANK_OLD_TIMESTAMP 3036 Description: The provided timestamp is too old. 3037 HttpStatus: 409 3038 3039 Value: 5162 3040 Name: BANK_TRANSFER_MAPPING_REUSED 3041 Description: The `authorization_pub` for a request to transfer funds has already been used for another non-recurring transfer. 3042 HttpStatus: 409 3043 3044 Value: 5163 3045 Name: BANK_TRANSFER_MAPPING_UNKNOWN 3046 Description: The authorization_pub for a request to transfer funds is not currently registered. 3047 HttpStatus: 409 3048 3049 # 6000 - 6999: Reserved for sync 3050 # 6000 - 6099: Reserved for SYNC_GENERIC 3051 3052 Value: 6100 3053 Name: SYNC_ACCOUNT_UNKNOWN 3054 Description: The sync service failed to find the account in its database. 3055 HttpStatus: 404 3056 3057 Value: 6101 3058 Name: SYNC_BAD_IF_NONE_MATCH 3059 Description: The SHA-512 hash provided in the If-None-Match header is malformed. 3060 HttpStatus: 400 3061 3062 Value: 6102 3063 Name: SYNC_BAD_IF_MATCH 3064 Description: The SHA-512 hash provided in the If-Match header is malformed or missing. 3065 HttpStatus: 400 3066 3067 Value: 6103 3068 Name: SYNC_BAD_SYNC_SIGNATURE 3069 Description: The signature provided in the "Sync-Signature" header is malformed or missing. 3070 HttpStatus: 400 3071 3072 Value: 6104 3073 Name: SYNC_INVALID_SIGNATURE 3074 Description: The signature provided in the "Sync-Signature" header does not match the account, old or new Etags. 3075 HttpStatus: 403 3076 3077 Value: 6105 3078 Name: SYNC_MALFORMED_CONTENT_LENGTH 3079 Description: The "Content-length" field for the upload is not a number. 3080 HttpStatus: 400 3081 3082 Value: 6106 3083 Name: SYNC_EXCESSIVE_CONTENT_LENGTH 3084 Description: The "Content-length" field for the upload is too big based on the server's terms of service. 3085 HttpStatus: 413 3086 3087 Value: 6107 3088 Name: SYNC_OUT_OF_MEMORY_ON_CONTENT_LENGTH 3089 Description: The server is out of memory to handle the upload. Trying again later may succeed. 3090 HttpStatus: 413 3091 3092 Value: 6108 3093 Name: SYNC_INVALID_UPLOAD 3094 Description: The uploaded data does not match the Etag. 3095 HttpStatus: 400 3096 3097 Value: 6109 3098 Name: SYNC_PAYMENT_GENERIC_TIMEOUT 3099 Description: HTTP server experienced a timeout while awaiting promised payment. 3100 HttpStatus: 408 3101 3102 Value: 6110 3103 Name: SYNC_PAYMENT_CREATE_BACKEND_ERROR 3104 Description: The sync service could not set up the payment request with its own backend. 3105 HttpStatus: 500 3106 3107 Value: 6111 3108 Name: SYNC_PREVIOUS_BACKUP_UNKNOWN 3109 Description: The sync service failed to find the backup to be updated in its database. 3110 HttpStatus: 404 3111 3112 Value: 6112 3113 Name: SYNC_MISSING_CONTENT_LENGTH 3114 Description: The "Content-length" field for the upload is missing. 3115 HttpStatus: 400 3116 3117 Value: 6113 3118 Name: SYNC_GENERIC_BACKEND_ERROR 3119 Description: Sync had problems communicating with its payment backend. 3120 HttpStatus: 502 3121 3122 Value: 6114 3123 Name: SYNC_GENERIC_BACKEND_TIMEOUT 3124 Description: Sync experienced a timeout communicating with its payment backend. 3125 HttpStatus: 504 3126 3127 Value: 6115 3128 Name: SYNC_CONFLICTING_WRITE 3129 Description: The provided new content is based on an outdated backup: the previous write was overwritten in the meantime. 3130 HttpStatus: 409 3131 3132 Value: 6116 3133 Name: SYNC_INCONSISTENT_BACKUP 3134 Description: The backup does not form a consistent linked list (e.g. the previous block does not match the given hash). 3135 HttpStatus: 409 3136 3137 3138 3139 # 7000 - 7999: Reserved for wallet 3140 3141 Value: 7000 3142 Name: WALLET_EXCHANGE_PROTOCOL_VERSION_INCOMPATIBLE 3143 Description: The wallet does not implement a version of the exchange protocol that is compatible with the protocol version of the exchange. 3144 HttpStatus: 501 3145 3146 Value: 7001 3147 Name: WALLET_UNEXPECTED_EXCEPTION 3148 Description: The wallet encountered an unexpected exception. This is likely a bug in the wallet implementation. 3149 HttpStatus: 500 3150 3151 Value: 7002 3152 Name: WALLET_RECEIVED_MALFORMED_RESPONSE 3153 Description: The wallet received a response from a server, but the response cannot be parsed. 3154 HttpStatus: 0 3155 3156 Value: 7003 3157 Name: WALLET_NETWORK_ERROR 3158 Description: The wallet tried to make a network request, but it received no response. 3159 HttpStatus: 0 3160 3161 Value: 7004 3162 Name: WALLET_HTTP_REQUEST_THROTTLED 3163 Description: The wallet tried to make a network request, but it was throttled. 3164 HttpStatus: 0 3165 3166 Value: 7005 3167 Name: WALLET_UNEXPECTED_REQUEST_ERROR 3168 Description: The wallet made a request to a service, but received an error response it does not know how to handle. 3169 HttpStatus: 0 3170 3171 Value: 7006 3172 Name: WALLET_EXCHANGE_DENOMINATIONS_INSUFFICIENT 3173 Description: The denominations offered by the exchange are insufficient. Likely the exchange is badly configured or not maintained. 3174 HttpStatus: 0 3175 3176 Value: 7007 3177 Name: WALLET_CORE_API_OPERATION_UNKNOWN 3178 Description: The wallet does not support the operation requested by a client. 3179 HttpStatus: 0 3180 3181 Value: 7008 3182 Name: WALLET_INVALID_TALER_PAY_URI 3183 Description: The given taler://pay URI is invalid. 3184 HttpStatus: 0 3185 3186 Value: 7009 3187 Name: WALLET_EXCHANGE_COIN_SIGNATURE_INVALID 3188 Description: The signature on a coin by the exchange's denomination key is invalid after unblinding it. 3189 HttpStatus: 0 3190 3191 Value: 7011 3192 Name: WALLET_CORE_NOT_AVAILABLE 3193 Description: The wallet core service is not available. 3194 HttpStatus: 0 3195 3196 Value: 7012 3197 Name: WALLET_WITHDRAWAL_OPERATION_ABORTED_BY_BANK 3198 Description: The bank aborted a withdrawal operation, so the withdrawal cannot complete. 3199 HttpStatus: 0 3200 3201 Value: 7013 3202 Name: WALLET_HTTP_REQUEST_GENERIC_TIMEOUT 3203 Description: An HTTP request made by the wallet timed out. 3204 HttpStatus: 0 3205 3206 Value: 7014 3207 Name: WALLET_ORDER_ALREADY_CLAIMED 3208 Description: The order has already been claimed by another wallet. 3209 HttpStatus: 0 3210 3211 Value: 7015 3212 Name: WALLET_WITHDRAWAL_GROUP_INCOMPLETE 3213 Description: A group of withdrawal operations (typically for the same reserve at the same exchange) has errors and will be tried again later. 3214 HttpStatus: 0 3215 3216 Value: 7016 3217 Name: WALLET_REWARD_COIN_SIGNATURE_INVALID 3218 Description: The signature on a coin by the exchange's denomination key (obtained through the merchant via a reward) is invalid after unblinding it. 3219 HttpStatus: 0 3220 3221 Value: 7017 3222 Name: WALLET_BANK_INTEGRATION_PROTOCOL_VERSION_INCOMPATIBLE 3223 Description: The wallet does not implement a version of the bank integration API that is compatible with the version offered by the bank. 3224 HttpStatus: 0 3225 3226 Value: 7018 3227 Name: WALLET_CONTRACT_TERMS_BASE_URL_MISMATCH 3228 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. 3229 HttpStatus: 0 3230 3231 Value: 7019 3232 Name: WALLET_CONTRACT_TERMS_SIGNATURE_INVALID 3233 Description: The merchant's signature on the contract terms is invalid. 3234 HttpStatus: 0 3235 3236 Value: 7020 3237 Name: WALLET_CONTRACT_TERMS_MALFORMED 3238 Description: The contract terms given by the merchant are malformed. 3239 HttpStatus: 0 3240 3241 Value: 7021 3242 Name: WALLET_PENDING_OPERATION_FAILED 3243 Description: A pending operation failed, so the request cannot be completed. 3244 HttpStatus: 0 3245 3246 Value: 7022 3247 Name: WALLET_PAY_MERCHANT_SERVER_ERROR 3248 Description: A payment was attempted, but the merchant had an internal server error (5xx). 3249 HttpStatus: 0 3250 3251 Value: 7023 3252 Name: WALLET_CRYPTO_WORKER_ERROR 3253 Description: The crypto worker failed. 3254 HttpStatus: 0 3255 3256 Value: 7024 3257 Name: WALLET_CRYPTO_WORKER_BAD_REQUEST 3258 Description: The crypto worker received a bad request. 3259 HttpStatus: 0 3260 3261 Value: 7025 3262 Name: WALLET_WITHDRAWAL_KYC_REQUIRED 3263 Description: A KYC step is required before withdrawal can proceed. 3264 HttpStatus: 0 3265 3266 Value: 7026 3267 Name: WALLET_DEPOSIT_GROUP_INSUFFICIENT_BALANCE 3268 Description: The wallet does not have sufficient balance to create a deposit group. 3269 HttpStatus: 0 3270 3271 Value: 7027 3272 Name: WALLET_PEER_PUSH_PAYMENT_INSUFFICIENT_BALANCE 3273 Description: The wallet does not have sufficient balance to create a peer push payment. 3274 HttpStatus: 0 3275 3276 Value: 7028 3277 Name: WALLET_PEER_PULL_PAYMENT_INSUFFICIENT_BALANCE 3278 Description: The wallet does not have sufficient balance to pay for an invoice. 3279 HttpStatus: 0 3280 3281 Value: 7029 3282 Name: WALLET_REFRESH_GROUP_INCOMPLETE 3283 Description: A group of refresh operations has errors and will be tried again later. 3284 HttpStatus: 0 3285 3286 Value: 7030 3287 Name: WALLET_EXCHANGE_BASE_URL_MISMATCH 3288 Description: The exchange's self-reported base URL does not match the one that the wallet is using. 3289 HttpStatus: 0 3290 3291 Value: 7031 3292 Name: WALLET_ORDER_ALREADY_PAID 3293 Description: The order has already been paid by another wallet. 3294 HttpStatus: 0 3295 3296 Value: 7032 3297 Name: WALLET_EXCHANGE_UNAVAILABLE 3298 Description: An exchange that is required for some request is currently not available. 3299 HttpStatus: 0 3300 3301 Value: 7033 3302 Name: WALLET_EXCHANGE_ENTRY_USED 3303 Description: An exchange entry is still used by the exchange, so it cannot be deleted without purging. 3304 HttpStatus: 0 3305 3306 Value: 7034 3307 Name: WALLET_DB_UNAVAILABLE 3308 Description: The wallet database is unavailable and the wallet thus is not operational. 3309 HttpStatus: 0 3310 3311 Value: 7035 3312 Name: WALLET_TALER_URI_MALFORMED 3313 Description: A `taler://` URI is malformed and cannot be parsed. 3314 HttpStatus: 0 3315 3316 Value: 7036 3317 Name: WALLET_CORE_REQUEST_CANCELLED 3318 Description: A wallet-core request was cancelled and therefore cannot provide a response. 3319 HttpStatus: 0 3320 3321 Value: 7037 3322 Name: WALLET_EXCHANGE_TOS_NOT_ACCEPTED 3323 Description: A wallet-core request failed because the user needs to first accept the exchange's terms of service. 3324 HttpStatus: 0 3325 3326 Value: 7038 3327 Name: WALLET_EXCHANGE_ENTRY_UPDATE_CONFLICT 3328 Description: An exchange entry could not be updated, as the exchange's new details conflict with the new details. 3329 HttpStatus: 0 3330 3331 Value: 7039 3332 Name: WALLET_EXCHANGE_ENTRY_OUTDATED 3333 Description: The wallet's information about the exchange is outdated. 3334 HttpStatus: 0 3335 3336 Value: 7040 3337 Name: WALLET_PAY_MERCHANT_KYC_MISSING 3338 Description: The merchant needs to do KYC first, the payment could not be completed. 3339 HttpStatus: 0 3340 3341 Value: 7041 3342 Name: WALLET_PEER_PULL_DEBIT_PURSE_GONE 3343 Description: A peer-pull-debit transaction was aborted because the exchange reported the purse as gone. 3344 HttpStatus: 0 3345 3346 Value: 7042 3347 Name: WALLET_TRANSACTION_ABORTED_BY_USER 3348 Description: A transaction was aborted on explicit request by the user. 3349 HttpStatus: 0 3350 3351 Value: 7043 3352 Name: WALLET_TRANSACTION_ABANDONED_BY_USER 3353 Description: A transaction was abandoned on explicit request by the user. 3354 HttpStatus: 0 3355 3356 Value: 7044 3357 Name: WALLET_PAY_MERCHANT_ORDER_GONE 3358 Description: A payment was attempted, but the merchant claims the order is gone (likely expired). 3359 HttpStatus: 0 3360 3361 Value: 7045 3362 Name: WALLET_EXCHANGE_ENTRY_NOT_FOUND 3363 Description: The wallet does not have an entry for the requested exchange. 3364 HttpStatus: 0 3365 3366 Value: 7046 3367 Name: WALLET_REQUEST_TRANSACTION_STATE_UNSUPPORTED 3368 Description: The wallet is not able to process the request due to the transaction's state. 3369 HttpStatus: 0 3370 3371 Value: 7047 3372 Name: WALLET_TRANSACTION_PROTOCOL_VIOLATION 3373 Description: A transaction could not be processed due to an unrecoverable protocol violation. 3374 HttpStatus: 0 3375 3376 Value: 7048 3377 Name: WALLET_CORE_API_BAD_REQUEST 3378 Description: A parameter in the request is malformed or missing. 3379 HttpStatus: 0 3380 3381 Value: 7049 3382 Name: WALLET_MERCHANT_ORDER_NOT_FOUND 3383 Description: The order could not be found. Maybe the merchant deleted it. 3384 HttpStatus: 0 3385 3386 Value: 7050 3387 Name: WALLET_PAY_MERCHANT_INSUFFICIENT_BALANCE 3388 Description: The wallet's balance for paying a merchant is insufficient. 3389 HttpStatus: 0 3390 3391 Value: 7051 3392 Name: WALLET_PURCHASE_NOT_FOUND 3393 Description: The wallet does not have a purchase for the requested order. 3394 HttpStatus: 0 3395 3396 Value: 7052 3397 Name: WALLET_TRANSACTION_NOT_FOUND 3398 Description: The wallet does not have a transaction with the requested transaction identifier. 3399 HttpStatus: 0 3400 3401 Value: 7053 3402 Name: WALLET_TRANSACTION_ACTION_UNSUPPORTED 3403 Description: The requested action is not supported for this type of transaction. 3404 HttpStatus: 0 3405 3406 Value: 7054 3407 Name: WALLET_KYC_LIMIT_EXCEEDED 3408 Description: The operation would exceed a limit imposed by the exchange that the user cannot raise by completing a KYC process. 3409 HttpStatus: 0 3410 3411 Value: 7055 3412 Name: WALLET_NO_SUITABLE_EXCHANGE 3413 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. 3414 HttpStatus: 0 3415 3416 Value: 7056 3417 Name: WALLET_BANK_ACCOUNT_NOT_FOUND 3418 Description: The wallet does not have a known bank account with the requested identifier. 3419 HttpStatus: 0 3420 3421 Value: 7057 3422 Name: WALLET_PEER_CONTRACT_NOT_FOUND 3423 Description: The exchange does not know the contract of this peer-to-peer payment. It may have expired. 3424 HttpStatus: 0 3425 3426 Value: 7058 3427 Name: WALLET_PEER_PUSH_CREDIT_PURSE_GONE 3428 Description: The purse of this peer-to-peer push payment is gone. The sender likely aborted the payment. 3429 HttpStatus: 0 3430 3431 Value: 7059 3432 Name: WALLET_PEER_PULL_DEBIT_ALREADY_PAID 3433 Description: This invoice has already been paid, possibly by another wallet. 3434 HttpStatus: 0 3435 3436 Value: 7060 3437 Name: WALLET_TOKENS_IN_USE 3438 Description: The tokens can not be deleted, as at least one of them is currently being used in a transaction. 3439 HttpStatus: 0 3440 3441 Value: 7061 3442 Name: WALLET_DB_BACKEND_UNSUPPORTED 3443 Description: The operation is not supported by the database backend that the wallet is currently running on. 3444 HttpStatus: 0 3445 3446 Value: 7062 3447 Name: WALLET_MAILBOX_UNAVAILABLE 3448 Description: The wallet could not use the mailbox service. 3449 HttpStatus: 0 3450 3451 Value: 7063 3452 Name: WALLET_ALIAS_REGISTRATION_FAILED 3453 Description: The wallet could not register an alias with the directory service. 3454 HttpStatus: 0 3455 3456 Value: 7064 3457 Name: WALLET_CONTRACT_TERMS_UNSUPPORTED 3458 Description: The contract terms use a feature that this version of the wallet does not support. Updating the wallet may help. 3459 HttpStatus: 0 3460 3461 Value: 7065 3462 Name: WALLET_EXCHANGE_SIGNATURE_INVALID 3463 Description: The exchange served data that is not correctly signed by its master key. The wallet refuses to use this exchange. 3464 HttpStatus: 0 3465 3466 Value: 7066 3467 Name: WALLET_EXCHANGE_KEYS_NOT_ACCEPTED 3468 Description: The exchange presents a master public key or currency that the user has not accepted yet. The operation was refused. 3469 HttpStatus: 0 3470 3471 Value: 7067 3472 Name: WALLET_EXCHANGE_NO_KEY_CHANGE_PENDING 3473 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. 3474 HttpStatus: 0 3475 3476 Value: 7068 3477 Name: WALLET_EXCHANGE_KEY_CHANGE_MISMATCH 3478 Description: The key set that was confirmed is not the one that the exchange currently presents. 3479 HttpStatus: 0 3480 3481 Value: 7069 3482 Name: WALLET_PEER_PUSH_PAYMENT_QUOTE_CHANGED 3483 Description: The values of a reviewed peer push payment changed before confirmation. The caller must prepare and show the payment again. 3484 HttpStatus: 0 3485 3486 # 8000 - 8499: Reserved for Anastasis 3487 3488 Value: 8000 3489 Name: ANASTASIS_GENERIC_BACKEND_TIMEOUT 3490 Description: The service encountered a timeout with its payment backend. 3491 HttpStatus: 504 3492 3493 Value: 8001 3494 Name: ANASTASIS_GENERIC_INVALID_PAYMENT_REQUEST 3495 Description: The backend requested payment, but the request is malformed. 3496 HttpStatus: 0 3497 3498 Value: 8002 3499 Name: ANASTASIS_GENERIC_BACKEND_ERROR 3500 Description: The backend received an unexpected response from the payment processor. 3501 HttpStatus: 502 3502 3503 Value: 8003 3504 Name: ANASTASIS_GENERIC_MISSING_CONTENT_LENGTH 3505 Description: The "Content-length" field for the upload is missing. 3506 HttpStatus: 400 3507 3508 Value: 8004 3509 Name: ANASTASIS_GENERIC_MALFORMED_CONTENT_LENGTH 3510 Description: The "Content-length" field for the upload is malformed. 3511 HttpStatus: 400 3512 3513 Value: 8005 3514 Name: ANASTASIS_GENERIC_ORDER_CREATE_BACKEND_ERROR 3515 Description: The backend failed to setup an order with the payment processor. 3516 HttpStatus: 502 3517 3518 Value: 8006 3519 Name: ANASTASIS_GENERIC_PAYMENT_CHECK_UNAUTHORIZED 3520 Description: The backend was not authorized to check for payment with the payment processor. 3521 HttpStatus: 500 3522 3523 Value: 8007 3524 Name: ANASTASIS_GENERIC_PAYMENT_CHECK_START_FAILED 3525 Description: The backend could not check payment status with the payment processor. 3526 HttpStatus: 500 3527 3528 Value: 8008 3529 Name: ANASTASIS_GENERIC_PROVIDER_UNREACHABLE 3530 Description: The Anastasis provider could not be reached. 3531 HttpStatus: 0 3532 3533 Value: 8009 3534 Name: ANASTASIS_PAYMENT_GENERIC_TIMEOUT 3535 Description: HTTP server experienced a timeout while awaiting promised payment. 3536 HttpStatus: 408 3537 3538 3539 Value: 8108 3540 Name: ANASTASIS_TRUTH_UNKNOWN 3541 Description: The key share is unknown to the provider. 3542 HttpStatus: 404 3543 3544 Value: 8109 3545 Name: ANASTASIS_TRUTH_AUTHORIZATION_METHOD_NO_LONGER_SUPPORTED 3546 Description: The authorization method used for the key share is no longer supported by the provider. 3547 HttpStatus: 500 3548 3549 Value: 8110 3550 Name: ANASTASIS_TRUTH_CHALLENGE_RESPONSE_REQUIRED 3551 Description: The client needs to respond to the challenge. 3552 HttpStatus: 403 3553 3554 Value: 8111 3555 Name: ANASTASIS_TRUTH_CHALLENGE_FAILED 3556 Description: The client's response to the challenge was invalid. 3557 HttpStatus: 403 3558 3559 Value: 8112 3560 Name: ANASTASIS_TRUTH_CHALLENGE_UNKNOWN 3561 Description: The backend is not aware of having issued the provided challenge code. Either this is the wrong code, or it has expired. 3562 HttpStatus: 404 3563 3564 Value: 8114 3565 Name: ANASTASIS_TRUTH_AUTHORIZATION_START_FAILED 3566 Description: The backend failed to initiate the authorization process. 3567 HttpStatus: 500 3568 3569 Value: 8115 3570 Name: ANASTASIS_TRUTH_KEY_SHARE_GONE 3571 Description: The authorization succeeded, but the key share is no longer available. 3572 HttpStatus: 404 3573 3574 Value: 8116 3575 Name: ANASTASIS_TRUTH_ORDER_DISAPPEARED 3576 Description: The backend no longer knows about the order that the client was asked to pay for. 3577 HttpStatus: 502 3578 3579 Value: 8117 3580 Name: ANASTASIS_TRUTH_BACKEND_EXCHANGE_BAD 3581 Description: The backend itself reported a bad exchange interaction. 3582 HttpStatus: 502 3583 3584 Value: 8118 3585 Name: ANASTASIS_TRUTH_UNEXPECTED_PAYMENT_STATUS 3586 Description: The backend reported an unexpected payment status. 3587 HttpStatus: 500 3588 3589 Value: 8119 3590 Name: ANASTASIS_TRUTH_PAYMENT_CREATE_BACKEND_ERROR 3591 Description: The backend failed to setup the order for payment. 3592 HttpStatus: 502 3593 3594 Value: 8120 3595 Name: ANASTASIS_TRUTH_DECRYPTION_FAILED 3596 Description: The decryption of the key share failed with the provided key. 3597 HttpStatus: 400 3598 3599 Value: 8121 3600 Name: ANASTASIS_TRUTH_RATE_LIMITED 3601 Description: The request rate is too high. The server is refusing requests to guard against brute-force attacks. 3602 HttpStatus: 429 3603 3604 Value: 8123 3605 Name: ANASTASIS_TRUTH_CHALLENGE_WRONG_METHOD 3606 Description: A request to issue a challenge is not valid for this authentication method. 3607 HttpStatus: 400 3608 3609 Value: 8150 3610 Name: ANASTASIS_TRUTH_UPLOAD_UUID_EXISTS 3611 Description: The backend failed to store the key share because the UUID is already in use. 3612 HttpStatus: 409 3613 3614 Value: 8151 3615 Name: ANASTASIS_TRUTH_UPLOAD_METHOD_NOT_SUPPORTED 3616 Description: The backend failed to store the key share because the authorization method is not supported. 3617 HttpStatus: 400 3618 3619 3620 3621 Value: 8200 3622 Name: ANASTASIS_SMS_PHONE_INVALID 3623 Description: The provided phone number is not an acceptable number. 3624 HttpStatus: 409 3625 3626 Value: 8201 3627 Name: ANASTASIS_SMS_HELPER_EXEC_FAILED 3628 Description: Failed to run the SMS transmission helper process. 3629 HttpStatus: 500 3630 3631 Value: 8202 3632 Name: ANASTASIS_SMS_HELPER_COMMAND_FAILED 3633 Description: Provider failed to send SMS. Helper terminated with a non-successful result. 3634 HttpStatus: 500 3635 3636 3637 Value: 8210 3638 Name: ANASTASIS_EMAIL_INVALID 3639 Description: The provided email address is not an acceptable address. 3640 HttpStatus: 409 3641 3642 Value: 8211 3643 Name: ANASTASIS_EMAIL_HELPER_EXEC_FAILED 3644 Description: Failed to run the email transmission helper process. 3645 HttpStatus: 500 3646 3647 Value: 8212 3648 Name: ANASTASIS_EMAIL_HELPER_COMMAND_FAILED 3649 Description: The provider failed to send email. The helper terminated with a non-successful result. 3650 HttpStatus: 500 3651 3652 3653 Value: 8220 3654 Name: ANASTASIS_POST_INVALID 3655 Description: The provided postal address is not an acceptable address. 3656 HttpStatus: 409 3657 3658 Value: 8221 3659 Name: ANASTASIS_POST_HELPER_EXEC_FAILED 3660 Description: Failed to run the mail transmission helper process. 3661 HttpStatus: 500 3662 3663 Value: 8222 3664 Name: ANASTASIS_POST_HELPER_COMMAND_FAILED 3665 Description: Provider failed to send mail. Helper terminated with a non-successful result. 3666 HttpStatus: 500 3667 3668 3669 Value: 8230 3670 Name: ANASTASIS_IBAN_INVALID 3671 Description: The provided IBAN address is not an acceptable IBAN. 3672 HttpStatus: 409 3673 3674 Value: 8231 3675 Name: ANASTASIS_IBAN_MISSING_TRANSFER 3676 Description: The provider has not yet received the IBAN wire transfer authorizing the disclosure of the key share. 3677 HttpStatus: 403 3678 3679 3680 Value: 8240 3681 Name: ANASTASIS_TOTP_KEY_MISSING 3682 Description: The backend did not find a TOTP key in the data provided. 3683 HttpStatus: 409 3684 3685 Value: 8241 3686 Name: ANASTASIS_TOTP_KEY_INVALID 3687 Description: The key provided does not satisfy the format restrictions for an Anastasis TOTP key. 3688 HttpStatus: 409 3689 3690 Value: 8250 3691 Name: ANASTASIS_ADDRESS_UNREACHABLE 3692 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. 3693 HttpStatus: 503 3694 3695 Value: 8251 3696 Name: ANASTASIS_HELPER_MISCONFIGURED 3697 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. 3698 HttpStatus: 500 3699 3700 3701 Value: 8301 3702 Name: ANASTASIS_POLICY_BAD_IF_NONE_MATCH 3703 Description: The given if-none-match header is malformed. 3704 HttpStatus: 400 3705 3706 Value: 8304 3707 Name: ANASTASIS_POLICY_OUT_OF_MEMORY_ON_CONTENT_LENGTH 3708 Description: The server is out of memory to handle the upload. Trying again later may succeed. 3709 HttpStatus: 413 3710 3711 Value: 8305 3712 Name: ANASTASIS_POLICY_BAD_SIGNATURE 3713 Description: The signature provided in the "Anastasis-Policy-Signature" header is malformed or missing. 3714 HttpStatus: 400 3715 3716 Value: 8306 3717 Name: ANASTASIS_POLICY_BAD_IF_MATCH 3718 Description: The given if-match header is malformed. 3719 HttpStatus: 400 3720 3721 Value: 8307 3722 Name: ANASTASIS_POLICY_INVALID_UPLOAD 3723 Description: The uploaded data does not match the Etag. 3724 HttpStatus: 400 3725 3726 Value: 8350 3727 Name: ANASTASIS_POLICY_NOT_FOUND 3728 Description: The provider is unaware of the requested policy. 3729 HttpStatus: 404 3730 3731 3732 3733 Value: 8400 3734 Name: ANASTASIS_REDUCER_ACTION_INVALID 3735 Description: The given action is invalid for the current state of the reducer. 3736 HttpStatus: 0 3737 3738 Value: 8401 3739 Name: ANASTASIS_REDUCER_STATE_INVALID 3740 Description: The given state of the reducer is invalid. 3741 HttpStatus: 0 3742 3743 Value: 8402 3744 Name: ANASTASIS_REDUCER_INPUT_INVALID 3745 Description: The given input to the reducer is invalid. 3746 HttpStatus: 0 3747 3748 Value: 8403 3749 Name: ANASTASIS_REDUCER_AUTHENTICATION_METHOD_NOT_SUPPORTED 3750 Description: The selected authentication method does not work for the Anastasis provider. 3751 HttpStatus: 0 3752 3753 Value: 8404 3754 Name: ANASTASIS_REDUCER_INPUT_INVALID_FOR_STATE 3755 Description: The given input and action do not work for the current state. 3756 HttpStatus: 0 3757 3758 Value: 8405 3759 Name: ANASTASIS_REDUCER_BACKEND_FAILURE 3760 Description: The service experienced an unexpected failure while interacting with the backend. 3761 HttpStatus: 0 3762 3763 Value: 8406 3764 Name: ANASTASIS_REDUCER_RESOURCE_MALFORMED 3765 Description: The contents of a resource file did not match the expected format. 3766 HttpStatus: 0 3767 3768 Value: 8407 3769 Name: ANASTASIS_REDUCER_RESOURCE_MISSING 3770 Description: A required resource file is missing. 3771 HttpStatus: 0 3772 3773 Value: 8408 3774 Name: ANASTASIS_REDUCER_INPUT_REGEX_FAILED 3775 Description: An input did not match the regular expression. 3776 HttpStatus: 0 3777 3778 Value: 8409 3779 Name: ANASTASIS_REDUCER_INPUT_VALIDATION_FAILED 3780 Description: An input did not match the custom validation logic. 3781 HttpStatus: 0 3782 3783 Value: 8410 3784 Name: ANASTASIS_REDUCER_POLICY_LOOKUP_FAILED 3785 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. 3786 HttpStatus: 0 3787 3788 Value: 8411 3789 Name: ANASTASIS_REDUCER_BACKUP_PROVIDER_FAILED 3790 Description: Anastasis provider reported a fatal failure. 3791 HttpStatus: 0 3792 3793 Value: 8412 3794 Name: ANASTASIS_REDUCER_PROVIDER_CONFIG_FAILED 3795 Description: Anastasis provider failed to respond to the configuration request. 3796 HttpStatus: 0 3797 3798 Value: 8413 3799 Name: ANASTASIS_REDUCER_POLICY_MALFORMED 3800 Description: The downloaded policy is malformed. This was likely caused by a client error while creating the backup. 3801 HttpStatus: 0 3802 3803 Value: 8414 3804 Name: ANASTASIS_REDUCER_NETWORK_FAILED 3805 Description: The policy could not be obtained, likely due to a network issue. 3806 HttpStatus: 0 3807 3808 Value: 8415 3809 Name: ANASTASIS_REDUCER_SECRET_MALFORMED 3810 Description: The recovered secret did not match the required syntax. 3811 HttpStatus: 0 3812 3813 Value: 8416 3814 Name: ANASTASIS_REDUCER_CHALLENGE_DATA_TOO_BIG 3815 Description: The challenge data provided is too large for the available providers. 3816 HttpStatus: 0 3817 3818 Value: 8417 3819 Name: ANASTASIS_REDUCER_SECRET_TOO_BIG 3820 Description: The provided core secret is too large for some of the providers. 3821 HttpStatus: 0 3822 3823 Value: 8418 3824 Name: ANASTASIS_REDUCER_PROVIDER_INVALID_CONFIG 3825 Description: The provider returned an invalid configuration. 3826 HttpStatus: 0 3827 3828 Value: 8419 3829 Name: ANASTASIS_REDUCER_INTERNAL_ERROR 3830 Description: The reducer encountered an internal error, likely a bug that needs to be reported. 3831 HttpStatus: 0 3832 3833 Value: 8420 3834 Name: ANASTASIS_REDUCER_PROVIDERS_ALREADY_SYNCED 3835 Description: The reducer already synchronized with all providers. 3836 HttpStatus: 0 3837 3838 # 8500 - 8600: Frosix 3839 3840 # 8600 - 8700: Donau 3841 3842 Value: 8606 3843 Name: DONAU_GENERIC_INVALID_DENOMINATION_CIPHER_FOR_OPERATION 3844 Description: The requested operation is not valid for the cipher used by the selected denomination. 3845 HttpStatus: 400 3846 3847 Value: 8607 3848 Name: DONAU_GENERIC_KEYS_MISSING 3849 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. 3850 HttpStatus: 503 3851 3852 Value: 8608 3853 Name: DONAU_CHARITY_SIGNATURE_INVALID 3854 Description: The signature of the charity key is not valid. 3855 HttpStatus: 403 3856 3857 Value: 8609 3858 Name: DONAU_CHARITY_NOT_FOUND 3859 Description: The charity is unknown. 3860 HttpStatus: 404 3861 3862 Value: 8610 3863 Name: DONAU_EXCEEDING_DONATION_LIMIT 3864 Description: The donation amount specified in the request exceeds the limit of the charity. 3865 HttpStatus: 400 3866 3867 Value: 8611 3868 Name: DONAU_GENERIC_DONATION_UNIT_UNKNOWN 3869 Description: The Donau is not aware of the donation unit requested for the operation. 3870 HttpStatus: 404 3871 3872 Value: 8612 3873 Name: DONAU_DONATION_UNIT_HELPER_UNAVAILABLE 3874 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. 3875 HttpStatus: 502 3876 3877 Value: 8613 3878 Name: DONAU_SIGNKEY_HELPER_UNAVAILABLE 3879 Description: The Donau failed to talk to the process responsible for its private signing keys. 3880 HttpStatus: 502 3881 3882 Value: 8614 3883 Name: DONAU_SIGNKEY_HELPER_BUG 3884 Description: The response from the online signing key helper process was malformed. 3885 HttpStatus: 500 3886 3887 Value: 8615 3888 Name: DONAU_GENERIC_WRONG_NUMBER_OF_SEGMENTS 3889 Description: The number of segments included in the URI does not match the number of segments expected by the endpoint. 3890 HttpStatus: 404 3891 3892 Value: 8616 3893 Name: DONAU_DONATION_RECEIPT_SIGNATURE_INVALID 3894 Description: The signature of the donation receipt is not valid. 3895 HttpStatus: 403 3896 3897 Value: 8617 3898 Name: DONAU_DONOR_IDENTIFIER_NONCE_REUSE 3899 Description: The client reused a unique donor identifier nonce, which is not allowed. 3900 HttpStatus: 409 3901 3902 Value: 8618 3903 Name: DONAU_CHARITY_PUB_EXISTS 3904 Description: A charity with the same public key is already registered. 3905 HttpStatus: 404 3906 3907 Value: 8619 3908 Name: DONAU_GENERIC_DONATION_UNIT_EXPIRED 3909 Description: The donation unit has expired and cannot be used any longer. 3910 HttpStatus: 410 3911 3912 Value: 8620 3913 Name: DONAU_GENERIC_DONATION_UNIT_TOO_EARLY 3914 Description: The donation unit is not yet valid. The client should repeat the request in the future when it might succeed. 3915 HttpStatus: 425 3916 3917 Value: 8621 3918 Name: DONAU_GENERIC_DONATION_UNIT_WRONG_YEAR 3919 Description: The donation unit is not valid for the year specified by the client. 3920 HttpStatus: 409 3921 3922 3923 # 9000 - 9599: LibEuFin. 3924 3925 Value: 9000 3926 Name: LIBEUFIN_NEXUS_GENERIC_ERROR 3927 Description: A generic error occurred in the LibEuFin nexus. See the enclosed details JSON for more information. 3928 HttpStatus: 0 3929 3930 Value: 9001 3931 Name: LIBEUFIN_NEXUS_UNCAUGHT_EXCEPTION 3932 Description: An uncaught exception happened in the LibEuFin nexus service. 3933 HttpStatus: 500 3934 3935 Value: 9500 3936 Name: LIBEUFIN_SANDBOX_GENERIC_ERROR 3937 Description: A generic error occurred in the LibEuFin sandbox. See the enclosed details JSON for more information. 3938 HttpStatus: 0 3939 3940 Value: 9501 3941 Name: LIBEUFIN_SANDBOX_UNCAUGHT_EXCEPTION 3942 Description: An uncaught exception happened in the LibEuFin sandbox service. 3943 HttpStatus: 500 3944 3945 # 9600 - 9749: Taldir 3946 Value: 9600 3947 Name: TALDIR_METHOD_NOT_SUPPORTED 3948 Description: This validation method is not supported by the service. 3949 HttpStatus: 404 3950 3951 Value: 9601 3952 Name: TALDIR_REGISTER_RATE_LIMITED 3953 Description: Number of allowed attempts for initiating a challenge exceeded. 3954 HttpStatus: 429 3955 3956 # 9750-9800: Challenger 3957 Value: 9750 3958 Name: CHALLENGER_GENERIC_CLIENT_UNKNOWN 3959 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. 3960 HttpStatus: 404 3961 3962 Value: 9751 3963 Name: CHALLENGER_GENERIC_CLIENT_FORBIDDEN_BAD_REDIRECT_URI 3964 Description: The client is not authorized to use the given redirect URI. 3965 HttpStatus: 401 3966 3967 Value: 9752 3968 Name: CHALLENGER_HELPER_EXEC_FAILED 3969 Description: The service failed to execute its helper process to send the challenge. 3970 HttpStatus: 502 3971 3972 Value: 9753 3973 Name: CHALLENGER_GRANT_UNKNOWN 3974 Description: The authorization grant is unknown to the service (it could also have been redeemed already or have expired). 3975 HttpStatus: 400 3976 3977 Value: 9754 3978 Name: CHALLENGER_CLIENT_FORBIDDEN_BAD_CODE 3979 Description: The code given is not even well-formed. 3980 HttpStatus: 400 3981 3982 Value: 9755 3983 Name: CHALLENGER_GENERIC_VALIDATION_UNKNOWN 3984 Description: The service is not aware of the referenced validation process, or it has expired. 3985 HttpStatus: 404 3986 3987 Value: 9756 3988 Name: CHALLENGER_CLIENT_FORBIDDEN_INVALID_CODE 3989 Description: Deprecated, no longer returned by any endpoint. The value stays reserved and must not be reused. Was: the code given is not valid. 3990 HttpStatus: 403 3991 3992 Value: 9757 3993 Name: CHALLENGER_TOO_MANY_ATTEMPTS 3994 Description: Too many attempts have been made, validation is temporarily disabled for this address. 3995 HttpStatus: 429 3996 3997 Value: 9758 3998 Name: CHALLENGER_INVALID_PIN 3999 Description: The TAN code provided is incorrect. 4000 HttpStatus: 403 4001 4002 Value: 9759 4003 Name: CHALLENGER_MISSING_ADDRESS 4004 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. 4005 HttpStatus: 409 4006 4007 Value: 9760 4008 Name: CHALLENGER_CLIENT_FORBIDDEN_READ_ONLY 4009 Description: The client is not allowed to change the address being validated. 4010 HttpStatus: 403 4011 4012 Value: 9761 4013 Name: CHALLENGER_NO_CHALLENGE_TRANSMITTED 4014 Description: No challenge was ever transmitted for this validation, so it cannot be solved yet. The user must provide their address first. 4015 HttpStatus: 409 4016 4017 Value: 9762 4018 Name: CHALLENGER_ADDRESS_RESTRICTION_VIOLATED 4019 Description: An address field does not match the regular expression configured for it. The detail names the offending field. 4020 HttpStatus: 400 4021 4022 Value: 9763 4023 Name: CHALLENGER_ADDRESS_RESTRICTION_MALFORMED 4024 Description: The address restriction configured for this field is missing its regular expression or the expression failed to compile. This is a server misconfiguration. 4025 HttpStatus: 500 4026 4027 Value: 9764 4028 Name: CHALLENGER_TOO_MANY_ADDRESS_CHANGES 4029 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. 4030 HttpStatus: 429 4031 4032 Value: 9765 4033 Name: CHALLENGER_TOO_MANY_PIN_TRANSMISSIONS 4034 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. 4035 HttpStatus: 429 4036 4037 Value: 9766 4038 Name: CHALLENGER_NO_PIN_ATTEMPTS_LEFT 4039 Description: The number of attempts to enter the TAN has been exhausted. The user may still request a retransmission or change the address. 4040 HttpStatus: 429 4041 4042 Value: 9767 4043 Name: CHALLENGER_CLIENT_AUTHENTICATION_FAILED 4044 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. 4045 HttpStatus: 401 4046 4047 Value: 9768 4048 Name: CHALLENGER_TOKEN_UNKNOWN 4049 Description: The access token presented is malformed, unknown or expired. Malformed and unknown tokens are deliberately not distinguished. 4050 HttpStatus: 401 4051 4052 Value: 9769 4053 Name: CHALLENGER_ADDRESS_UNUSABLE 4054 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. 4055 HttpStatus: 400 4056 4057 Value: 9770 4058 Name: CHALLENGER_ADDRESS_UNREACHABLE 4059 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. 4060 HttpStatus: 503 4061 4062 Value: 9771 4063 Name: CHALLENGER_HELPER_MISCONFIGURED 4064 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. 4065 HttpStatus: 500 4066 4067 # 9800-9850: Paivana 4068 Value: 9800 4069 Name: PAIVANA_PAYMENT_MISSING 4070 Description: The request is invalid as the specified order is unpaid. The client should only call this endpoint after paying the order. 4071 HttpStatus: 409 4072 4073 Value: 9801 4074 Name: PAIVANA_BACKEND_REFUSED 4075 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. 4076 HttpStatus: 502 4077 4078 Value: 9802 4079 Name: PAIVANA_ORDER_UNKNOWN 4080 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. 4081 HttpStatus: 404 4082 4083 Value: 9803 4084 Name: PAIVANA_BACKEND_ERROR 4085 Description: The merchant backend returned an unexpected status code. This is probably a protocol incompatibility that should be reported to the developers. 4086 HttpStatus: 500 4087 4088 Value: 9804 4089 Name: PAIVANA_GET_ORDER_FAILED 4090 Description: Paivana failed to initialize the request to check the payment status. This should never happen. The system administrator should consult the logs. 4091 HttpStatus: 500 4092 4093 Value: 9805 4094 Name: PAIVANA_WRONG_ORDER 4095 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. 4096 HttpStatus: 409 4097 4098 Value: 9806 4099 Name: PAIVANA_TOO_LATE 4100 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. 4101 HttpStatus: 410 4102 4103 Value: 9807 4104 Name: PAIVANA_TEMPLATE_UNKNOWN 4105 Description: The payment template specified in the request is unknown to the backend. 4106 HttpStatus: 404 4107 4108 Value: 9808 4109 Name: PAIVANA_PAYWALL_DISABLED 4110 Description: The paywall functionality is currently disabled. Thus, proofs of payment are unnecessary and also not supported. 4111 HttpStatus: 501 4112 4113 Value: 9809 4114 Name: PAIVANA_INVALID_TARGET 4115 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. 4116 HttpStatus: 409 4117 4118 4119 4120 # Some of our build systems expect the range to be < 10k, so let's keep it like this for now. 4121 Value: 9999 4122 Name: END 4123 Description: End of error code range. 4124 HttpStatus: 0