Post data missing from request

We are currently using Kong for all our api calls successfully. We have created a new service to upload photo’s using a php service which is not working. We created a test php service to test and we are finding the post data is missing when routing through Kong. Here is the simple test php and testing results. We are using jwt and cors plugins.

<?php print 'post '; print_r($_POST); print 'request '; print_r($_REQUEST); ?>

Here is the curl command routine directory to service and successful results testing the postman.

curl -X POST
https://ws.gnl.net/delivery/testinfo.php
-H ‘Accept: /
-H ‘Cache-Control: no-cache’
-H ‘Connection: keep-alive’
-H ‘Content-Type: application/x-www-form-urlencoded’
-H ‘Host: ws.gnl.net
-H ‘Postman-Token: a7ed5fb4-0e21-4a3a-bd84-ddc38877e7b5,be15bbf2-3d98-45ff-922f-7e9f6f3840c0’
-H ‘User-Agent: PostmanRuntime/7.15.0’
-H ‘accept-encoding: gzip, deflate’
-H ‘authorization: Bearer x.x.x’
-H ‘cache-control: no-cache’
-H ‘content-length: 274’
-H ‘content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW’
-H ‘cookie: HttpOnly’
-b HttpOnly
-F test1=data1
-F test2=data2

RESPONSE

post Array
(
[test1] => data1
[test2] => data2
)
request Array
(
[test1] => data1
[test2] => data2
)

Here is the curl command that is routine thru Kong and the unsuccessful results testing the postman.

curl -X POST
https://ws.gnl.net/api/php/delivery/testinfo.php
-H ‘Accept: /
-H ‘Cache-Control: no-cache’
-H ‘Connection: keep-alive’
-H ‘Content-Type: application/x-www-form-urlencoded’
-H ‘Postman-Token: fe8a301b-e657-4e9b-8366-5e2c7450b20d,caa3079c-b270-4c39-b654-5ffb23e50365’
-H ‘User-Agent: PostmanRuntime/7.15.0’
-H ‘accept-encoding: gzip, deflate’
-H ‘authorization: Bearer x.x.x’
-H ‘cache-control: no-cache’
-H ‘content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW’
-H ‘cookie: HttpOnly’
-H ‘referer: https://ws.gnl.net/api/php/delivery/testinfo.php
-b HttpOnly
-F test1=data1
-F test2=data2

RESPONSE

post Array
(
)
request Array
(
)

Any assistance would be appreciated.

thanks,
Rich