-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
I am sending body as below
{
"filter": "",
"select": "*",
"orderBy": "",
"skip": 10,
"top": 5.5,
"apply": ""
}
To Reproduce
I am getting below response, we don't have any model field in request
{
"code": 400,
"message": "request validation failed",
"validation": [
{
"path": "top",
"message": "Input string '5.5' is not a valid integer. Path 'top', line 6, position 12.",
"id": null
},
{
"path": "model",
"message": "The model field is required.",
"id": null
}
]
}
Expected behaviour
{
"code": 400,
"message": "request validation failed",
"validation": [
{
"path": "top",
"message": "Input string '5.5' is not a valid integer. Path 'top', line 6, position 12.",
"id": null
}
]
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working