Skip to main content

const performCreate = async (z, bundle) => {

  const response = await z.request({

    method: 'GET',

    url: 'https://api.getblueshift.com/api/v1/campaigns.json',

    qs: {

      end_time: bundle.inputData.end_time,

      start_time: bundle.inputData.start_time,

      tag_data: bundle.inputData.tag_data,

      status: bundle.inputData.status// json by default

    }

 

 

is this right way?

@ikbelkirasan should be able to help here.


Hi @pushkar123 - Query params can be put in params instead of qs.