{
  "name": "Add to Linksss",
  "version": 1,
  "description": "Shortcut recipe for posting a URL to Linksss via /api/add.",
  "actions": [
    {
      "type": "AskForInput",
      "prompt": "Enter your Linksss base URL",
      "key": "base_url",
      "default": "https://linksss.apps-lxc.domain.ts.net"
    },
    {
      "type": "GetCurrentURL",
      "key": "target_url"
    },
    {
      "type": "HTTPRequest",
      "method": "POST",
      "url": "{base_url}/api/add",
      "headers": {
        "Content-Type": "application/json"
      },
      "json_body": {
        "url": "{target_url}"
      }
    },
    {
      "type": "ShowResult",
      "text": "Sent to Linksss"
    }
  ]
}
