How to pass value from http-shortcuts

I can pass value from tasker's send intent function,like this

But I can't pass value from http-shortcuts

Is there anything wrong?

Help me plz

I got help from http-shortcuts' developer

My code was wrong

here's right code,it works

sendIntent({
    type: 'broadcast',
    action: 'org.kustom.action.SEND_VAR',
    extras: [
        {
            name: 'org.kustom.action.EXT_NAME',
            type: 'string',
            value: 'httpreq',
        },
        {
            name: 'org.kustom.action.VAR_NAME',
            type: 'string',
            value: 'upload',
        },
        {
            name: 'org.kustom.action.VAR_VALUE',
            type: 'int',
            value: 1024,
        },
    ],
});

but I can't pass value array,help plz