Hello - I was recently talking to support in the questions forum about something I'm doing in V2 of the API and they directed me over here. You can see that discussion here: https://userguide.rescuegroups.org/questions/65765390/how-to-submit-a-form-over-api
The bottom line is that I'd like to be able to create a form submission through the API. My use case is that I would like to use my own code to generate an adoption application on my rescue's Wordpress site and post the submissions into our RescueGroups account. I would like to control aspects of the form beyond formatting where I really don't want to go the iFrame'd form route.
I understand you can manage forms through the V2 API and read/view submitted forms, but I would like to be able to create form responses/submissions via the API. Something like:
// token and stuff
"objectType" => "submittedforms",
"objectAction" => "add",
"add" => array (
"questions" => array({
"questionID" => "0324932",
"operation" => "equals",
"value" => "some text here"
},
{
"questionID" => "3928424",
"operation" => "equals",
"value" => "different text"
},
{
"questionID" => "234924",
"operation" => "equals",
"value" => "you get the idea"
}
)
"other stuff" => "here",
"i don't know what else" => "you would submit here"
),
// more JSON
My syntax isn't perfect and I'm open to change, but hopefully you get the picture.
Is this possible to work into V5? and would there be an ETA on getting it done?