POST
/
interact
/
type
/
{instance_id}
Python (SDK)
import os
from skylight_sdk import Skylight


with Skylight(
    apikey=os.getenv("SKYLIGHT_APIKEY", ""),
) as skylight:

    res = skylight.interact.type(instance_id="<id>", text="Hello, world!", interval=0.05)

    # Handle response
    print(res)
{
  "message": "<string>",
  "status": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key authentication

Path Parameters

instance_id
string
required

Body

application/json
text
string
required
interval
number | null
default:0.05
Required range: 0.01 <= x <= 0.5

Response

Successfully typed text

status
string
required

Status of the operation

Example:

"success"

message
string
required

Human-readable status message