Validation Overview
Validation Type | Scenario |
---|---|
Requiredrequired | Mandatory parameter not sent in the request. |
Invalidinvalid | Date with wrong Wrong format. |
Typetype | Mismatch data type |
Lengthlength | Data length exceeded. |
Where we validate specific characters, a Regex is provided.
...
Case | Error Type |
Value with higher length | length |
Value different to a string. | type |
Not sent | required |
address_2
Case | Error Type |
Value with higher length | length |
Value different to a string. | type |
Not sent | required |
amount
Case | Error Type |
Value different to a number. | type |
Decimal point different to period. | invalid |
Value zero or negative. | invalid |
Value with higher precision and/or scale | length |
Not sent | required |
amount_requested
Case | Error Type |
Decimal point different to period. | invalid |
Value zero or negative. | invalid |
Value with higher precision and/or scale | length |
Value different to a number. | type |
...
Case | Error Type |
Value with higher length | length |
Not sent | required |
Value different to a string. | type |
business_address_2
Case | Error Type |
Value with higher length | length |
Not sent | required |
Value different to a string. | type |
...