error
Details of the error.
codestring
The error code. Also shown in the X-Application-Status-Code response header.
Example:
5068
messagestring
A description of the error.
Example:
Field error(s)
detailsstring[]
Details of any parameter value errors.
fieldErrors object[]
If applicable, this is a list of fields that have issues.
Array [
fieldstring
Identifies the JSON request field.
Example:
accountId
errorstring
The problem associated with field.
Example:
AccountId is missing in the request. If multiple accounts are registered with same currency, accountId is mandatory.
]
error
{
"code": "5068",
"message": "Field error(s)",
"details": [
"Either you submitted a request that is missing a mandatory field or the value of a field does not match the format expected."
],
"fieldErrors": [
{
"field": "accountId",
"error": "AccountId is missing in the request. If multiple accounts are registered with same currency, accountId is mandatory."
}
]
}