Errors
Wire Services Errors
Error Code | Label | Description | Context | Status |
---|---|---|---|---|
extWire | External wire error. | An error occurred in the wires back office. | undefined | 400 |
wireAmountDailyLimit | The daily amount limit for wires has been exceeded. |
Occurs when the monetary amount limit has been exceeded. If higher monetary amounts of wires are expected, speak to your PayGears representative. Context: reference - The external reference in your system status - The current status of this request cFiAggregatorId - A cFiAggregatorId in connectFi cFiTransactionId - A transaction ID in connectFi amount - The wire amount dtsError - Additional error information |
{ |
400 |
wireRequestsDailyLimit | The wires request limit has been exceeded. | Occurs when the number of wire requests allowed limit has been exceeded. If higher volumes of wire requests are expected, speak to your PayGears representative. Context: reference - The external reference in your system status - The current status of this request cFiAggregatorId - A cFiAggregatorId in connectFi cFiTransactionId - A transaction ID in connectFi amount - The wire amount dtsError - Additional error information |
{ |
400 |
wireTransactionNotFound | Wire transaction not found. | Check the transaction ID to make sure it is valid and exists. Context: cFiTransactionId - A transaction ID in connectFi |
{ |
400 |
wireTransactionNotRetractable | No transaction matching the given cFiTransactionId with status Initiated was found. |
No transaction matching the given cFiTransactionId with status Initiated was found. Context: cFiTransactionId - A transaction ID in connectFi |
{ |
400 |
Error Examples
Error Description | Parameters/Request Body | Response Body |
---|---|---|
400 transfer-to/wire "Invalid Source Account." trigger amount used 16.98 | REQUEST BODY { "amount": 16.98, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId1343", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId1 343" } |
RESPONSE BODY { "requestId": "00063250726a11ee8ff83020a7305d12", "code": "extWire", "context": { "SC": 409, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_03Fsb75oz7TPp1sU9jbmq", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId1343", "amount": 16.98, //set sandbox value amount = 16.98 to test "Invalid Source Account" error message "dtsError": "2023-10-24T12:36:49.000Z" }, "message": "Invalid Source Account." } |
400 transfer-to/wire "Core System downstream error. Wire not created." trigger amount used 16.99 | REQUEST BODY { "amount": 16.99, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId1344", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId1 344" } |
RESPONSE BODY { "requestId": "1b769480726a11ee8ff83020a7305d12", "code": "extWire", "context": { "SC": 500, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_PPKznMNPsyv7RQlJunJLQ", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId1344", "amount": 16.99, //set sandbox value amount = 16.99 to test "Core System downstream" error message "dtsError": "2023-10-24T12:37:36.000Z" }, "message": "Core System downstream error. Wire not created." } |
400 transfer-to/wire requestValidateError - Missing required property | REQUEST BODY { "amount": 16.53, "endUserAccount": "1234567890123456", "reference": "externalTrnId2002", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 002" } |
RESPONSE BODY { "requestId": "c833c97081a811ee9b7427220cc6c212", "code": "requestValidateError", "context": [ { "instancePath": "", "schemaPath": "#/required", "keyword": "required", "params": { "missingProperty": "currency" }, "message": "must have required property 'currency'" } ] } |
400 transfer-to/wire requestValidateError - Must be greater than allowed minimum | REQUEST BODY { "amount": -16.53, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId2002", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 002" } |
RESPONSE BODY { "requestId": "e434f9f081a811ee9b7427220cc6c212", "code": "requestValidateError", "context": [ { "instancePath": "/amount", "schemaPath": "common#/definitions/amount/exclusiveMin imum", "keyword": "exclusiveMinimum", "params": { "comparison": ">", "limit": 0 }, "message": "must be > 0" } ] } |
400 transfer-to/wire referenceExists Error | REQUEST BODY { "amount": 16.53, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId2004", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 004" } |
RESPONSE BODY { "requestId": "ae0e57407f0a11ee9e3bd5975edcd412", "code": "referenceExists", "context": { "entityId": "CLIENTID_5f2pO0aq0I5D0HV440yms2", "reference": "externalTrnId2004" }, "message": "Reference already exists." } |
400 transfer-to/wire wireAmountDailyLimit Error sandbox trigger amount >17.00 and <=18.00 | REQUEST BODY { "amount": 17.01, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId2007", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 007" } |
RESPONSE BODY { "requestId": "29c740c0951511eea89d7100487c0512", "code": "wireAmountDailyLimit", "context": { "SC": 409, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_1gQ5Lb0oN74Zh42b1i1EnE", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId2007", "amount": 17.01 //set sandbox value to amount > 17.00 and <= 18.00 in order to test this error message }, "message": "Wire Amount will exceed Account Daily Total Amount Limit. Wire not created." } |
400 transfer-to/wire wireAmountDailyLimit sandbox trigger amount >18.00 and <= 19.00 | REQUEST BODY { "amount": 18.01, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId2008", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 008" } |
RESPONSE BODY { "requestId": "8cf7dc90951511eea89d7100487c0512", "code": "wireAmountDailyLimit", "context": { "SC": 409, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_4i0CgEg1z3EiFAV8apMz98", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId2008", "amount": 18.01 //set sandbox value to amount > 18.00 and <= 19.00 in order to test this error message }, "message": "Wire Amount Exceeds Limit for the Wire Account. Wire not created." } |
400 transfer-to/wire wireAmountDailyLimit sandbox trigger amount >19.00 and <= 20.00 | REQUEST BODY { "amount": 19.01, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId2009", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 009" } |
RESPONSE BODY { "requestId": "c7a12530951611eea89d7100487c0512", "code": "wireAmountDailyLimit", "context": { "SC": 409, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_64HxaMtdcqbArSe0SxgM6e", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId2009", "amount": 19.01 //set sandbox value to amount > 19.00 and <= 20.00 in order to test this error message }, "message": "Wire Amount will exceed Company Daily Total Limit. Wire not created." } |
400 transfer-to/wire wireAmountDailyLimit sandbox trigger amount >20.00 | REQUEST BODY { "amount": 20.01, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId2010", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 010" } |
RESPONSE BODY { "requestId": "1076ed80951711eea89d7100487c0512", "code": "wireAmountDailyLimit", "context": { "SC": 409, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_v4E2izLhOi4VoGvtlJKdI", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId2010", "amount": 20.01 //set sandbox value to amount > 20.00 in order to test this error message }, "message": "Wire Amount exceeds Company Wire Amount Limit. Wire not created." } |
400 transfer-to/wire extWire sandbox trigger bankABANumber 110000000 | REQUEST BODY { "amount": 16.53, "currency": "USD", "endUserAccount": "123456789012", "reference": "externalTrnId2167", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "110000000", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 167" } |
RESPONSE BODY { "requestId": "f60352c0ccf911eebb061f991c0df212", "code": "extWire", "context": { "SC": 400, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_7uekmKtcAZU48N1hhvxMjL", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId2167", "amount": 16.53 }, "message": "ABA Number is not in Wire ABA file" //set sandbox value to "bankABANumber": "110000000" in order to test this error message } |
400 transfer-to/wire extWire sandbox trigger bankABANumber 120000000 | REQUEST BODY { "amount": 16.53, "currency": "USD", "endUserAccount": "123456789012", "reference": "externalTrnId2168", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "120000000", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 168" } |
RESPONSE BODY { "requestId": "afd05360ccfa11eebb061f991c0df212", "code": "extWire", "context": { "SC": 400, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_5lLlJaQTPFaduF8s8TrQQh", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId2168", "amount": 16.53 }, "message": "The receiving DFI is not a Funds Transfer Bank" //set sandbox value to "bankABANumber": "120000000" in order to test this error message } |
400 transfer-to/wire extWire sandbox trigger beneficiary.addressLine1 P.O. Box 123 | REQUEST BODY { "amount": 16.53, "currency": "USD", "endUserAccount": "123456789012", "reference": "externalTrnId2169", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "120000000", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 169" } |
RESPONSE BODY { "requestId": "afd05360ccfa11eebb061f991c0df212", "code": "extWire", "context": { "SC": 400, //back office status "status": "Declined", "cFiTransactionId": "CLIENTID_k88uaeerINATGpvY34R1L", "cFiAggregatorId": "CLIENTID", "reference": "externalTrnId2169", "amount": 16.53 }, "message": "Request Errors. See Detail for more information. BeneficiaryInformation.BeneficiaryAddres s.addressLine1 appears to be a P.O. Box." //set sandbox value to "beneficiary.addressLine1": "P.O. Box 123" in order to test this error message } |
400 transfer-to/wire uniqueAttributeNotFound | REQUEST BODY { "amount": 16.53, "currency": "USD", "endUserAccount": "1234567890123456", "wireAccountToken": "unknownWireAccountToken", "reference": "externalTrnId2011", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 011" } |
RESPONSE BODY { "requestId": "ac49acc0951711eea89d7100487c0512", "code": "uniqueAttributeNotFound", "message": "Unique Attribute wireAccountToken=unknownWireAccountToken not found for module wire" } |
400 transfer-to/wire moduleDisabled Contact PayGears support to enable this service | REQUEST BODY { "amount": 16.53, "currency": "USD", "endUserAccount": "1234567890123456", "reference": "externalTrnId2012", "originator": { "commonName": "John Doe", "legalName": "John Doe", "address": { "addressLine1": "999 Main Street", "addressLine2": "Ste. A", "city": "San Francisco", "state": "CA", "postalCode": "12345", "country": "US" } }, "beneficiary": { "bankName": "Unicorn Bank", "bankABANumber": "122244184", "accountNumber": "1234567890123456", "name": "John Smith", "address": { "addressLine1": "1346 Pleasant Ave", "addressLine2": "Apt A123", "city": "Salt Lake City", "state": "UT", "postalCode": "12345", "country": "US" } }, "narrative": "Invoice #123 for May", "memos": [ "For spare parts per contract #123", "Delivered Salt Lake City UT 12345" ], "webhookURL": "https://your_webhook_url/externalTrnId2 012" } |
RESPONSE BODY { "requestId": "d69aa6f0951711eea89d7100487c0512", "code": "moduleDisabled", "message": "Module wire is disabled" } |
400 transfer-to/wire/query requestValidateError - Must not have both references and cFiTransactionIds | REQUEST BODY { "cFiTransactionIds": [ "CLIENTID_5r5ESJN8CEJZpFdfK2nqjE" ], "references": [ "externalTrnId1341"] } |
RESPONSE BODY { "requestId": "9373579081a911ee9b7427220cc6c212", "code": "requestValidateError", "context": [ { "instancePath": "", "schemaPath": "#/oneOf/0/additionalProperties", "keyword": "additionalProperties", "params": { "additionalProperty": "references" }, "message": "must NOT have additional properties" }, { "instancePath": "", "schemaPath": "#/oneOf/1/additionalProperties", "keyword": "additionalProperties", "params": { "additionalProperty": "cFiTransactionIds" }, "message": "must NOT have additional properties" }, { "instancePath": "", "schemaPath": "#/oneOf", "keyword": "oneOf", "params": { "passingSchemas": null }, "message": "must match exactly one schema in oneOf" } ] } |
400 transfer-to/wire/query requestValidateError - Must not have fewer than minimum allowed characters | REQUEST BODY { "cFiTransactionIds": [ "" ] } |
RESPONSE BODY { "requestId": "bd522f0081a911ee9b7427220cc6c212", "code": "requestValidateError", "context": [ { "instancePath": "/cFiTransactionIds/0", "schemaPath": "common#/definitions/id/minLength", "keyword": "minLength", "params": { "limit": 1 }, "message": "must NOT have fewer than 1 characters" }, { "instancePath": "", "schemaPath": "#/oneOf/1/required", "keyword": "required", "params": { "missingProperty": "references" }, "message": "must have required property 'references'" }, { "instancePath": "", "schemaPath": "#/oneOf", "keyword": "oneOf", "params": { "passingSchemas": null }, "message": "must match exactly one schema in oneOf" } ] } |
400 transfer-to/wire/query requestValidateError - Must not have fewer than minimum allowed items | REQUEST BODY { "cFiTransactionIds": [ ] } |
RESPONSE BODY { "requestId": "c9222ba081a911ee9b7427220cc6c212", "code": "requestValidateError", "context": [ { "instancePath": "/cFiTransactionIds", "schemaPath": "#/oneOf/0/properties/cFiTransactionIds/ minItems", "keyword": "minItems", "params": { "limit": 1 }, "message": "must NOT have fewer than 1 items" }, { "instancePath": "", "schemaPath": "#/oneOf/1/required", "keyword": "required", "params": { "missingProperty": "references" }, "message": "must have required property 'references'" }, { "instancePath": "", "schemaPath": "#/oneOf", "keyword": "oneOf", "params": { "passingSchemas": null }, "message": "must match exactly one schema in oneOf" } ] } |
400 transfer-to/wire/list requestValidateError - Must be an allowed value | REQUEST BODY { "dateCreateFrom": "2023-02-01T14:27:33.684Z", "dateCreateTo": "2029-05-13T14:27:33.684Z", "status": "OtherStatus", "numberOfRecords": 1000, "skipRecords": 0 } |
RESPONSE BODY { "requestId": "e23fb550797311eeb5658f28ab5fe311", "code": "requestValidateError", "context": [ { "instancePath": "/status", "schemaPath": "#/properties/status/enum", "keyword": "enum", "params": { "allowedValues": [ "Sent", "Initiated", "Complete", "Declined", "Cancelled", "Unknown" ] }, "message": "must be equal to one of the allowed values" } ] } |
400 transfer-to/wire/list greaterNumberOfRecords Error | REQUEST BODY { "dateCreateFrom": "2023-02-01T14:27:33.684Z", "dateCreateTo": "2029-05-13T14:27:33.684Z", "status": "Complete", "numberOfRecords": 1001, "skipRecords": 0 } |
RESPONSE BODY { "requestId": "ddc5e8c0951911eea89d7100487c0512", "code": "greaterNumberOfRecords", "context": { "maxNumberOfRecords": 1000 }, "message": "Bad request. numberOfRecords field greater than 1000" } |
400 transfer-to/wire/export-list | REQUEST BODY { "dateCreateFrom": "2023-02-01T14:27:33.684Z", "dateCreateTo": "2029-05-13T14:27:33.684Z", "status": "UnknownStatus", "numberOfRecords": 1000, "skipRecords": 0 } |
RESPONSE BODY { "requestId": "0bc9ea9092db11ef965556da8a86751c", "code": "requestValidateError", "context": [ { "instancePath": "/status", "schemaPath": "#/properties/status/enum", "keyword": "enum", "params": { "allowedValues": [ "Sent", "Initiated", "Complete", "Declined", "Cancelled", "Unknown" ] }, "message": "must be equal to one of the allowed values" } ], "isInformative": true } |
400 transfer-to/wire/export-list greaterNumberOfRecords | REQUEST BODY { "dateCreateFrom": "2023-02-01T14:27:33.684Z", "dateCreateTo": "2029-05-13T14:27:33.684Z", "status": "Complete", "numberOfRecords": 100001, "skipRecords": 0 } |
RESPONSE BODY { "requestId": "8d1f5a3092db11ef965556da8a86751c", "code": "greaterNumberOfRecords", "context": { "maxNumberOfRecords": 100000 }, "message": "Bad request. numberOfRecords field greater than 100000", "isInformative": true } |
400 transfer-to/wire/retract-delayed wireTransactionNotRetractable Error | REQUEST BODY { "cFiTransactionId": "NotDelayedCFiTransactionId", "description": "Cancelling delayed transaction" } |
RESPONSE BODY { "requestId": "da3ba4a0cd0011eebb061f991c0df212", "code": "wireTransactionNotRetractable", "context": { "cFiTransactionId": "CLIENTID_sjxl064zIWBMnPtE3m0IF1" }, "message": "No transaction matching the given cFiTransactionId with status Initiated was found." } |
400 transfer-to/wire/retract-delayed requestValidateError - Missing required property | REQUEST BODY { "description": "Cancelling delayed transaction" } |
RESPONSE BODY { "requestId": "235fdb10cd0111eebb061f991c0df212", "code": "requestValidateError", "context": [ { "instancePath": "", "schemaPath": "#/required", "keyword": "required", "params": { "missingProperty": "cFiTransactionId" }, "message": "must have required property 'cFiTransactionId'" } ] } |