req icon indicating copy to clipboard operation
req copied to clipboard

`encode_body`: `:form` and nested values

Open wojtekmach opened this issue 1 year ago • 0 comments

Before:

Req.post!(req,
  url: "/prices",
  form: [
    product: product.id,
    unit_amount: 100,
    currency: "usd",
    "recurring[interval]": "month"
  ]
)

After:

Req.post!(req,
  url: "/prices",
  form: [
    product: product.id,
    unit_amount: 100,
    currency: "usd",
    recurring: [
      interval: "month"
    ]
  ]
)

wojtekmach avatar Nov 27 '23 07:11 wojtekmach