Tinyforms stays in the background and aims to give you full flexibility with your forms. If our standard form integration is not enough for you, you can use our API to push data to the connected Google Spreadsheet document.

POST [your submission URL]

Request headers:

Response

{
  "success": true,
  "submission": { "fieldname": "value" }
}

curl Example:

$ curl -H "Accept: application/json" -X POST -F 'name=rick' <https://www.tinyfor.ms/s/gxX5YUEzRVJAe2bAMsJWq9TV>

# Response: 
{"success":true,"submission":{"name":"rick"}}