I have an api Request such as this
"partnerServiceId":"${partnerServiceId}",
"customerNo":"${customerNo}",
"virtualAccountNo":"${virtualAccountNo}",
"virtualAccountName":"${virtualAccountName}",
"sourceAccountNo":"${sourceAccountNo}",
"partnerReferenceNumber":"${partnerReferenceNumber}",
"paidAmount":"${paidAmount}",
"trxDateTime":"${trxDateTime}"
The First column partnerServiceId is not needed for this case. So here is the sample csv I made, for one row. I used ",,".
application/json,16786 f65a899b974397a0b7692cfde37ee0f953eb972b,,1282513558,112081000000000,Latifah Hanum,1901000000000,20211105018,10002.00,05/11/2021 08:44
Here is the variable setting I'm using in CSV Data Config
Content-Type,Authorization,partnerServiceId,customerNo,virtualAccountNo,virtualAccountName,sourceAccountNo,sourceAccountNo,partnerReferenceNumber,paidAmount,trxDateTime
The Result came out like
Content-Type: application/json
Authorization: 16786 f65a899b974397a0b7692cfde37ee0f953eb972b
and for the request body
POST data: --RY0QSC1feIvTe02NIdE1n4T8bJi3bK3yiR---
Seems like only the headers came out right, what am I missing ?