Python
import requests url = 'https://api.simplex.sh/wait' headers = { 'X-API-Key': 'your_api_key_here' } data = { 'milliseconds': 2000, # Wait for 2 seconds 'session_id': 'your_session_id' # Optional } response = requests.post(url, headers=headers, data=data) print(response.json())
{ "succeeded": true, "error": "<string>" }
Waits in the remote session.
Simplex API Key
Wait response
The response is of type object.
object
Was this page helpful?