Complex Filtering (GET Contracts)
Invalid data type supplied for field
|
400
Bad Request
|
The field name and provided value that caused the error are identified. Multiple errors may be included.
Example: providing a value of "all" for a boolean input type and a value of "abc" for a numeric input type
{
"errors": [
{
"message": "V200: Validation Errors",
"extensions": [
{
"code": "contractFilter",
"messages": [
"The contractFilter field is required."
]
},
{
"code": "contractFilterSet[0].activeContracts",
"messages": [
"Could not convert string to boolean: all. Path 'contractFilterSet[0].activeContracts', line 7, position 32."
]
},
{
"code": "contractFilterSet[0].userDefinedFieldFilters[0].userDefinedFieldId",
"messages": [
"Could not convert string to integer: abc. Path 'contractFilterSet[0].userDefinedFieldFilters[0].userDefinedFieldId', line 11, position 37."
]
}
]
}
]
}
|
Query String Filtering (eg; GET users, Get counterparties)
Invalid data type supplied for parameter
|
400
Bad Request
|
{
"errors": [
{
"message": "V200: Validation Errors",
"extensions": [
{
"code": "id",
"messages": [
"The value 'john' is not valid."
]
},
{
"code": "pageSize",
"messages": [
"The field must be null or greater than 0."
]
}
]
}
]
}
|