Set Cookies
POST/workstations/:workstation_id/browser/cookies
Set one or more cookies in the browser's default context. These cookies will be available across all tabs.
Required fields for each cookie:
name
: Cookie namevalue
: Cookie value
Optional fields:
domain
: Cookie domain (e.g., ".example.com")path
: Cookie path (default: "/")expires
: Expiration time in seconds since Unix epoch (-1 for session cookies)http_only
: Whether cookie is HTTP-only (default: false)secure
: Whether cookie requires HTTPS (default: false)same_site
: Cookie SameSite policy ("strict", "lax", or "none")priority
: Cookie priority ("low", "medium", or "high") - Chrome onlysame_party
: Whether cookie is same-party - Chrome onlysource_scheme
: Cookie source scheme type - Chrome onlypartition_key
: Cookie partition key for isolationpartition_key_opaque
: Whether partition key is opaque - Chrome only
Example usage:
// Set a session cookie
await fetch('/workstations/{id}/browser/cookies', {
method: 'POST',
body: JSON.stringify({
cookies: [{
name: 'sessionId',
value: 'abc123',
domain: '.example.com',
http_only: true,
secure: true
}]
})
});
// Set multiple cookies
await fetch('/workstations/{id}/browser/cookies', {
method: 'POST',
body: JSON.stringify({
cookies: [
{
name: 'theme',
value: 'dark',
domain: 'app.example.com'
},
{
name: 'lang',
value: 'en-US',
domain: '.example.com',
expires: 1735689600
}
]
})
});
Request
Responses
- 204
- 400
- 401
- 402
- 422
- 429
- 500
- 503
No Content - the operation was successful but there is no additional content to return.
Invalid Request Format - check API documentation for proper syntax.
Unauthorized - missing or invalid API key.
Payment Required - you have run out of trial credits or your payment method has expired. Please add payment details to your account.
Unprocessable Entity - cannot find requested asset associated with your API key.
Too Many Requests - you have exceeded the rate limit for your account. Please wait before making additional requests.
Internal Server Error - please retry your request.
Service Unavailable - our servers have dropped the request due to high load - please retry.