Problem
If I change the order number of the mautic form field in an API call, it does not changes the order of the field.
"fields": [
{
"label": "expTest",
"showLabel": true,
"alias": "expTest",
"type": "freetext",
"defaultValue": null,
"isRequired": false,
"validationMessage": null,
"helpMessage": null,
"order": 3,
"properties": {
"text": "la bla bla bla"
},
"validation": [],
"labelAttributes": null,
"inputAttributes": null,
"containerAttributes": null,
"leadField": null,
"saveResult": true,
"isAutoFill": false
}
]
As it can be seen in the above JSON code, Just want to edit the order of a Field, but it is not working.
Is there any solution for this or this can be considered as an improvement or bug in API ?