I'm trying to create contact fields in mautic via api and using oauth 2 for authentication. Here is the response I'm getting
{
"errors": [
{
"code": 400,
"message": "order: This value is not valid.",
"details": {
"order": [
"This value is not valid."
]
}
}
],
"error": {
"message": "order: This value is not valid. (`error` is deprecated as of 2.6.0 and will be removed in 3.0. Use the `errors` array instead.)",
"code": 400,
"details": {
"order": [
"This value is not valid."
]
}
}
}
I've worked with mautic api before and the order parameter was never required. Also when I tried to pass parameter order as an int value it was not accepting that as well.