Which blocks to use for this Post request?

Please could someone help me to build blocs with this:

curl --location --request POST 'https://156.0.81.121:8081/enterprise-integration/e-eco-api/transfer' \
--header 'Content-Type: application/json' \
--header 'x-client-id: fadc5e4191e043599238d01fd0d51cbc' \
--header 'x-client-secret: ef5b01f399Cb434faE95a8134D0b2cAC' \
--header 'x-request-token: 7f137705f4caa39dd691e771403430dd23d27aa53cefcb97217927312e77847bca6b8764f487ce5d1f6520fd7227e4d4c470c5d1e7455822c8ee95b10a0e9855' \
--data-raw '{
    "hostHeaderInfo": {
        "partnerId": "PALMPAY",
        "countryCode": "NG",
        "transferType": "",
        "requestId": "33MG101746975",
        "sourceIp": "189.210.155.254"
    },
  "transactionDetails": {
    "externalRefNo": "627034220705508",
    "paymentReferenceNo": "627034220705508",
    "amount": 1,
    "currency": "NGN",
    "narration": "Wallet to Bank",
    "transactionDate": "2020-01-31",
    "beneficiary": {
      "accountName": "MANTE OLABISI",
      "bankCode": "300591",
      "accountNo": "0244304915",
      "accountType": "A"
    }
  }
}'

and
BODY Raw

{
    "hostHeaderInfo": {
        "partnerId": "PALMPAY",
        "countryCode": "NG",
        "transferType": "",
        "requestId": "33MG101746975",
        "sourceIp": "189.210.155.254"
    },
  "transactionDetails": {
    "externalRefNo": "627034220705508",
    "amount": 1,
    "currency": "NGN",
    "narration": "Wallet to Bank",
    "transactionDate": "2020-01-31",
    "beneficiary": {
      "accountName": "MANTE OLABISI",
      "bankCode": "300591",
      "accountNo": "0244304915",
      "accountType": "A"
    }
  }
}

Did You Try ?

use the web component
you cound learn from the following example and adjust it to your needs


Taifun

Ok thank you very much