<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>14 Jan 2018 17:23:24 Z</lastBuildDate><pubDate>14 Jan 2018 17:23:24 Z</pubDate><description>Hello,&#13;
&#13;
I want to use this API:&#13;
&#13;
POST /v1/orders/ HTTP/1.1&#13;
Authorization: Basic aHVudGVyMjo=&#13;
Content-Type: application/json&#13;
{&#13;
  "merchant_order_id": "EXAMPLE001",&#13;
  "amount": 995,&#13;
  "currency": "EUR",&#13;
  "description": "Example order #1",&#13;
  "return_url": "http://www.example.com/",&#13;
  "transactions": [&#13;
    {&#13;
      "payment_method": "ideal",&#13;
      "payment_method_details": {&#13;
        "issuer_id": "INGBNL2A"&#13;
      }&#13;
    }&#13;
  ]&#13;
}&#13;
&#13;
So I created this HTTPForm:&#13;
&#13;
sURL is string = "https://api.epay.ing.be"&#13;
&#13;
sContentType is string = "application/json"&#13;
&#13;
sHeader is string = "Authorization: Basic aHVudGVyMjo=="&#13;
&#13;
HTTPCreateForm("EPAY")&#13;
HTTPAddParameter("EPAY","merchant_order_id","EXAMPLE001")&#13;
HTTPAddParameter("EPAY","merchant_order_id","EXAMPLE001")&#13;
HTTPAddParameter("EPAY","amount", "995")&#13;
HTTPAddParameter("EPAY","currency", "EUR")&#13;
HTTPAddParameter("EPAY","description", "Example order #1")&#13;
HTTPAddParameter("EPAY","return_url", "http://www.example.com/")&#13;
HTTPAddParameter("EPAY","transactions", ????)&#13;
&#13;
But how do I get that "transactions" array into a parameter?&#13;
&#13;
Thanks!</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/64010-array-httpaddparameter/read.awp</link><title>array in HTTPAddParameter</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster></channel></rss>
