The community member has created a resource that posts to their database, and they have added a form to their page that submits values to system variables. However, they are having trouble getting the title from the form to render in the POST body. The comments suggest that the community member should use binding on the resource body with the object, and specify title: system.search.title. The community member confirms that this solution worked for them.
I've created a resource that pots to my database (this works if I hardcode values).
I've added a form to my page and have it submitting my value to the system variables correctly. Here's an example: { "params": {}, "search": { "title": "matrix" }, "origin": "mysite.com" }
My POST body is: { "documentId": "unique()", "data": { "title": "{{ search.title }}" } }
I've tried multiple ways to get the title to be the title I filled in. I can only get strings of my body input to render, not the actual title.
Thanks! Finally got it! I was trying to manually type this in the largest editor but I needed to get into the binding window where I could select the system vars.