Table widget API update syntax

I assume the current syntax for update virtual pins via API is eg.

http://blynk-cloud.com/f6b2c9e2fb134xxxxxx4be895575/update/V2?value=555

This works for “single value” pins. However, the Table Widget sends multiple parameters when row is pressed. On the hardware sketch they can be found as param[0], param[1] …when row is pressed at the APP.

Question: What is the correct syntax for API call for “simulating” the row press in the App?

Thank You

Have you tried value = [ “1”, “2”]

https://blynkapi.docs.apiary.io/#reference/0/write-pin-value-via-put/write-pin-value-via-put

Pete.

Thank You for Your answer,

http://blynk-cloud.com/f6b2c9e2fb1xxxxxxxxbe895575/update/V0?value=[“xx”,“155”]

Table: BLYNK_WRITE(V0) cmd: 155
Table: BLYNK_WRITE(V0) cmd: [“xx”,“155”]
Table: BLYNK_WRITE(V0) cmd: [“xx”,“155”,“zzz”]
Table: BLYNK_WRITE(V0) cmd: [155]
Table: BLYNK_WRITE(V0) cmd: [155,555]
Table: BLYNK_WRITE(V0) cmd: [“xx”,“155”]

Putting parameter(s) in brackets appears in the sketch as one parameter (param[0]). My demand is to get values ready-parsed to n different parameters (param[0], param[1]…exactly the same way as the App does. The solution is not to parse parameters differently for both cases (App/API) because the sketch has no way of knowing which parameter passing method is used (I’m controlling the sketch using both App and the API).