$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "runMode": "DEVELOPMENT",
< "startUrls": [
< {
< "url": "https://crawlee.dev/js"
< }
< ],
< "respectRobotsTxtFile": true,
< "linkSelector": "a[href]",
< "globs": [
< {
< "glob": "https://crawlee.dev/js/*/*"
< }
< ],
< "pseudoUrls": [],
< "excludes": [
< {
< "glob": "/**/*.{png,jpg,jpeg,pdf}"
< }
< ],
< "proxyConfiguration": {
< "useApifyProxy": true
< },
< "initialCookies": [],
< "waitUntil": [
< "networkidle2"
< ],
< "preNavigationHooks": "// We need to return array of (possibly async) functions here.\n// The functions accept two arguments: the \"crawlingContext\" object\n// and \"gotoOptions\".\n[\n async (crawlingContext, gotoOptions) => {\n // ...\n },\n]\n",
< "postNavigationHooks": "// We need to return array of (possibly async) functions here.\n// The functions accept a single argument: the \"crawlingContext\" object.\n[\n async (crawlingContext) => {\n // ...\n },\n]",
< "breakpointLocation": "NONE",
< "customData": {}
<}
<EOF
$curl "https://api.apify.com/v2/acts/vertivine~opentable-review-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'