Form-data not being parsed correctly

Greetings,

I have the following setup:

And this is what’s arriving at my server:

Array
(
    [search] => Array
        (
            [modelClassName] => SalesItem
            [searchAttributeData] => Array
                (
                    [clauses] => Array
                        (
                            [1] => Array
                                (
                                    [attributeName] => isApproved
                                    [operatorType] => contains
                                    [value] => 1
                                )

                            [3] => Array
                                (
                                    [attributeName] => sales
                                    [relatedAttributeName] => mode
                                    [operatorType] => contains
                                    [value] => S
                                )

                            [4] => Array
                                (
                                    [attributeName] => sales
                                    [relatedAttributeName] => stages
                                    [value] => ENT
                                )

                        )

                    [structure] => 1 AND 2 AND 3 AND 4
                )

        )

    [pagination] => Array
        (
            [page] => 1
            [pageSize] => 1000
        )

    [sort] => dateDue asc
)

Array key 2 is missing altogether, as well as:

data[search][searchAttributeData][clauses][4][operatorType]

Any clue what I might be missing ?!?

Thanks!

@Vortal_Sistemas I was unable to reproduce this with https://postman-echo.com and Postman v6.1.4, it looks like there’s an issue with the extended more query parsing on your server.