Trying to send a post request using dynamic vars but request use it as literal string

  1. My goal: sending a post request

  2. Issue: post request using dynamic vars but request use it as literal string

  3. Steps I've taken to troubleshoot: tried different body types

  4. Additional info:

1 Like

Hey @Nir_Graziani,

Please use the JSON.stringify() function in your request payload:

{{
  JSON.stringify({
    tenantId: current_user.metadata.tenant_id,
    ownership: _.upperCase(current_user.metadata.user_type),
    industries: current_user.metadata.industry.split(','),
    defaultIndustry: select_default_industry_settings.value,
    defaultBrand: select_user_brand.value
  })
}}

Can you let us know what type of resource this is, @Nir_Graziani? And if the above recommendation unblocked you?