but the webhooks cames with a metadata with format...
# general
m
but the webhooks cames with a metadata with format:
"metadata"=>{"a"=>"[object Object]"}
j
Looks like your metadata is a deeply nested object.
You need to properly encode the metadata in the URL.
I would refrain from using deeply nested objects. Just do
Copy code
?metadata[a]=1&metadata[b]=2&metadata[c]=3
The above is the metadata object
{ a: 1, b: 2, c: 3 }
. I guess your metadata object looks like
{ a: { deeply: "nested" } }
.
m
got it! thank,. I thought that the metadata should be configured on the Cal js and not the url
if I put the metadata in the callUrl it works ok 👍