history This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Send parallel curl requests ====== Create a curl-config.txt file with content: <code> url = "https://my-api-url" request = "PATCH" header = "Content-Type: application/json" url = "https://my-api-url" request = "PATCH" header = "Content-Type: application/json" url = "https://my-api-url" request = "PATCH" header = "Content-Type: application/json" </code> Then export TOKEN variable and run curl command: <code> TOKEN=xxx curl --config curl-config.txt --parallel --parallel-max 3 --header "Authorization: $TOKEN" --data '{"value": "change3"}' </code>