Skip to content

Instantly share code, notes, and snippets.

@jdrzj
Last active December 9, 2018 13:01
Show Gist options
  • Save jdrzj/7e2cc11ef8727f49db76e251bbf1b2fe to your computer and use it in GitHub Desktop.
Save jdrzj/7e2cc11ef8727f49db76e251bbf1b2fe to your computer and use it in GitHub Desktop.
Multiple rows into spreadsheet with Sheetsu
# Read more here: https://docs.sheetsu.com/?shell#create
curl "https://sheetsu.com/apis/v1.0/{your_api_id}" \
-X POST \
-H "Content-Type: application/json" \
-d '
{
"rows": [
{ "link": "https://google.com" },
{ "link": "https://www.apple.com/" },
{ "link": "https://sheetsu.com" },
{ "link": "https://github.com" }
]
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment