{"components":{"schemas":{"Account":{"additionalProperties":false,"description":"Website account derived from stored credentials, authenticators, and activity. `authentication` never claims an active session; it reports what was observed.","properties":{"auth_methods":{"items":{"enum":["password","totp","mail_verification"],"type":"string"},"type":"array"},"authentication":{"enum":["verified_recently","previously_authenticated","credential_stored","unknown"],"type":"string"},"authenticator_ids":{"items":{"format":"uuid","type":"string"},"type":"array"},"credential_ids":{"items":{"format":"uuid","type":"string"},"type":"array"},"credential_policy":{"enum":["any_session","none"],"type":"string"},"display_name":{"type":"string"},"evidence":{"items":{"additionalProperties":false,"properties":{"at":{"format":"date-time","type":"string"},"type":{"type":"string"}},"required":["type","at"],"type":"object"},"type":"array"},"first_seen_at":{"format":"date-time","nullable":true,"type":"string"},"identifiers":{"items":{"type":"string"},"type":"array"},"last_authenticated_at":{"format":"date-time","nullable":true,"type":"string"},"site":{"format":"uri","type":"string"},"state":{"enum":["active","unverified","needs_reauth","disabled","unknown"],"type":"string"}},"required":["site","display_name","state","authentication","auth_methods"],"type":"object"},"ActivityEvent":{"additionalProperties":false,"properties":{"actor":{"$ref":"#/components/schemas/Actor"},"data":{"additionalProperties":true,"type":"object"},"id":{"type":"integer"},"occurred_at":{"format":"date-time","type":"string"},"request_id":{"nullable":true,"type":"string"},"type":{"type":"string"}},"required":["id","type","data","request_id","occurred_at"],"type":"object"},"Actor":{"additionalProperties":false,"properties":{"id":{"format":"uuid","nullable":true,"type":"string"},"type":{"enum":["api_key","user","system","unknown"],"type":"string"}},"required":["type"],"type":"object"},"Approval":{"additionalProperties":false,"properties":{"action":{"type":"string"},"created_at":{"format":"date-time","type":"string"},"decided_at":{"format":"date-time","nullable":true,"type":"string"},"expires_at":{"format":"date-time","nullable":true,"type":"string"},"id":{"format":"uuid","type":"string"},"reason":{"nullable":true,"type":"string"},"request_id":{"nullable":true,"type":"string"},"status":{"enum":["pending","approved","denied","expired","consumed"],"type":"string"},"subject":{"additionalProperties":true,"type":"object"},"workspace_id":{"format":"uuid","type":"string"}},"required":["id","workspace_id","action","subject","status","request_id","created_at"],"type":"object"},"Authenticator":{"additionalProperties":false,"properties":{"algorithm":{"enum":["sha1","sha256","sha512"],"type":"string"},"digits":{"type":"integer"},"id":{"format":"uuid","type":"string"},"inserted_at":{"format":"date-time","type":"string"},"label":{"type":"string"},"last_used_at":{"format":"date-time","nullable":true,"type":"string"},"period":{"type":"integer"},"site":{"nullable":true,"type":"string"},"workspace_id":{"format":"uuid","type":"string"}},"required":["id","workspace_id","label","site","algorithm","digits","period","inserted_at"],"type":"object"},"AuthenticatorCreate":{"additionalProperties":false,"properties":{"algorithm":{"enum":["sha1","sha256","sha512"],"type":"string"},"digits":{"maximum":8,"minimum":6,"type":"integer"},"label":{"type":"string"},"period":{"maximum":300,"minimum":15,"type":"integer"},"secret":{"type":"string"},"site":{"nullable":true,"type":"string"}},"required":["label","secret"],"type":"object"},"BrowserSession":{"additionalProperties":false,"properties":{"captcha":{"additionalProperties":false,"properties":{"captcha_image_selector":{"nullable":true,"type":"string"},"captcha_input_selector":{"nullable":true,"type":"string"},"proxies_configured":{"type":"boolean"},"solve_captchas":{"type":"boolean"}},"type":"object"},"closed_at":{"format":"date-time","nullable":true,"type":"string"},"control":{"enum":["agent","human"],"type":"string"},"control_taken_at":{"format":"date-time","nullable":true,"type":"string"},"expires_at":{"format":"date-time","nullable":true,"type":"string"},"id":{"format":"uuid","type":"string"},"remaining_seconds":{"type":"integer"},"replayed":{"type":"boolean"},"reused":{"type":"boolean"},"status":{"enum":["active","closed","expired"],"type":"string"},"workspace_id":{"format":"uuid","type":"string"}},"required":["id","workspace_id","status","expires_at","remaining_seconds","captcha","replayed","reused"],"type":"object"},"BrowserSessionCreate":{"additionalProperties":false,"properties":{"access_mode":{"description":"Deprecated compatibility input. Only supervised is accepted; direct is rejected.","type":"string"},"captcha_image_selector":{"nullable":true,"type":"string"},"captcha_input_selector":{"nullable":true,"type":"string"},"proxies":{"oneOf":[{"type":"boolean"},{"type":"array"}]},"reuse":{"type":"boolean"},"solve_captchas":{"type":"boolean"},"ttl_seconds":{"maximum":21600,"minimum":60,"type":"integer"}},"type":"object"},"Credential":{"additionalProperties":false,"properties":{"id":{"format":"uuid","type":"string"},"inserted_at":{"format":"date-time","type":"string"},"label":{"type":"string"},"last_used_at":{"format":"date-time","nullable":true,"type":"string"},"site":{"format":"uri","type":"string"},"status":{"enum":["active","disabled"],"type":"string"},"username":{"nullable":true,"type":"string"},"workspace_id":{"format":"uuid","type":"string"}},"required":["id","workspace_id","label","site","status","inserted_at"],"type":"object"},"CredentialCreate":{"additionalProperties":false,"properties":{"generate":{"type":"boolean"},"label":{"type":"string"},"secret":{"nullable":true,"type":"string"},"secret_length":{"maximum":64,"minimum":16,"type":"integer"},"site":{"format":"uri","type":"string"},"supervised_only":{"description":"Deprecated compatibility input. Ignored because every browser session is supervised."},"username":{"nullable":true,"type":"string"}},"required":["label","site"],"type":"object"},"FeedbackAccepted":{"additionalProperties":false,"properties":{"id":{"format":"uuid","type":"string"},"status":{"enum":["queued"],"type":"string"}},"required":["id","status"],"type":"object"},"FeedbackCreate":{"additionalProperties":false,"properties":{"category":{"enum":["bug","feature","question","other"],"type":"string"},"contact_email":{"nullable":true,"type":"string"},"message":{"maxLength":4000,"minLength":1,"type":"string"},"metadata":{"additionalProperties":true,"type":"object"}},"required":["message"],"type":"object"},"File":{"additionalProperties":false,"properties":{"checksum":{"type":"string"},"content_type":{"type":"string"},"id":{"format":"uuid","type":"string"},"inserted_at":{"format":"date-time","type":"string"},"path":{"type":"string"},"size_bytes":{"type":"integer"},"workspace_id":{"format":"uuid","type":"string"}},"required":["id","workspace_id","path","content_type","size_bytes","checksum","inserted_at"],"type":"object"},"FileCreate":{"additionalProperties":false,"properties":{"content_base64":{"type":"string"},"content_type":{"nullable":true,"type":"string"},"path":{"type":"string"}},"required":["path","content_base64"],"type":"object"},"MailReply":{"additionalProperties":false,"properties":{"attachments":{"type":"array"},"html":{"nullable":true,"type":"string"},"reply_all":{"type":"boolean"},"text":{"nullable":true,"type":"string"}},"type":"object"},"MailSend":{"additionalProperties":false,"properties":{"attachments":{"type":"array"},"bcc":{"items":{"format":"email","type":"string"},"type":"array"},"cc":{"items":{"format":"email","type":"string"},"type":"array"},"html":{"nullable":true,"type":"string"},"subject":{"type":"string"},"text":{"nullable":true,"type":"string"},"to":{"items":{"format":"email","type":"string"},"type":"array"}},"required":["to","subject"],"type":"object"},"PageAction":{"additionalProperties":false,"properties":{"credential_id":{"nullable":true,"type":"string"},"fills":{"type":"array"},"frame_origin":{"nullable":true,"type":"string"},"full_page":{"type":"boolean"},"origin":{"nullable":true,"type":"string"},"selector":{"nullable":true,"type":"string"},"selectors":{"items":{"type":"string"},"type":"array"},"submit_selector":{"nullable":true,"type":"string"},"timeout_ms":{"type":"integer"},"url":{"nullable":true,"type":"string"}},"type":"object"},"Problem":{"additionalProperties":false,"description":"RFC 7807 problem detail. Type values are documented in the API wiki.","properties":{"detail":{"type":"string"},"status":{"type":"integer"},"title":{"type":"string"},"type":{"description":"Problem type slug.","enum":["ambiguous-credential","approval-denied","approval-expired","approval-not-pending","blocked-webhook-url","browser-session-not-active","cdp-refused","element-not-enabled","element-not-selectable","element-not-visible","element-obscured","file-too-large","fill-not-applied","forbidden","frame-ambiguous","frame-not-found","frame-origin-mismatch","frame-origin-required","frame-unreachable","human-operator-required","idempotency-conflict","internal-error","invalid-access-mode","invalid-after-id","invalid-api-key-expiration","invalid-api-key-scopes","invalid-approval-decision","invalid-approval-required","invalid-approval-status","invalid-approval-wait","invalid-captcha-settings","invalid-captcha-timeout","invalid-feedback","invalid-file-content","invalid-file-path","invalid-fills","invalid-full-page","invalid-idempotency-key","invalid-limit","invalid-mail-attachments","invalid-mail-body","invalid-mail-labels","invalid-mail-recipients","invalid-mail-subject","invalid-mail-wait","invalid-message-event","invalid-name","invalid-navigation-url","invalid-option","invalid-pagination","invalid-proxies","invalid-reuse","invalid-secret","invalid-secret-length","invalid-selector","invalid-selectors","invalid-site","invalid-totp-secret","invalid-totp-settings","invalid-ttl","invalid-wait-timeout","invalid-webhook-event-types","invalid-webhook-url","invalid-workspace-update","login-profile-incomplete","login-profile-not-found","navigation-timeout","no-credential-for-site","not-found","option-not-found","origin-mismatch","origin-required","payment-required","provider-outcome-unknown","provider-quota-exceeded","provider-request-failed","provider-unavailable","quota-exceeded","rate-limited","release-confirmation-required","request-in-progress","secret-on-screen","selector-not-a-frame","selector-not-found","session-inactive","session-under-human-control","sign-in-failed","too-many-streams","unresolvable-webhook-url","validation-failed","vault-unconfigured","workspace-failed","workspace-not-dormant","workspace-not-ready","workspace-purged","workspace-released"],"type":"string"}},"required":["type","title","status","detail"],"type":"object"},"UsageResponse":{"additionalProperties":false,"properties":{"data":{"additionalProperties":false,"properties":{"billable_workspaces":{"minimum":0,"type":"integer"},"caps":{"additionalProperties":true,"type":"object"},"from":{"format":"date-time","type":"string"},"limits":{"items":{"additionalProperties":false,"properties":{"limit":{"additionalProperties":true},"meter":{"type":"string"}},"required":["meter","limit"],"type":"object"},"type":"array"},"meters":{"items":{"additionalProperties":false,"properties":{"meter":{"type":"string"},"quantity":{"type":"string"}},"required":["meter","quantity"],"type":"object"},"type":"array"},"plan":{"enum":["trial","pro","suspended"],"type":"string"},"to":{"format":"date-time","type":"string"},"workspaces":{"items":{"additionalProperties":false,"properties":{"meters":{"items":{"additionalProperties":false,"properties":{"meter":{"type":"string"},"quantity":{"type":"string"}},"required":["meter","quantity"],"type":"object"},"type":"array"},"workspace_id":{"format":"uuid","type":"string"}},"required":["workspace_id","meters"],"type":"object"},"type":"array"}},"required":["from","to","meters","workspaces","billable_workspaces","plan","limits","caps"],"type":"object"}},"required":["data"],"type":"object"},"WebhookDelivery":{"additionalProperties":false,"properties":{"attempt_count":{"type":"integer"},"attempts":{"items":{"$ref":"#/components/schemas/WebhookDeliveryAttempt"},"type":"array"},"endpoint_id":{"format":"uuid","type":"string"},"event_id":{"format":"uuid","type":"string"},"event_type":{"type":"string"},"failed_at":{"format":"date-time","nullable":true,"type":"string"},"id":{"format":"uuid","type":"string"},"inserted_at":{"format":"date-time","type":"string"},"last_error_reason":{"nullable":true,"type":"string"},"last_response_snippet":{"nullable":true,"type":"string"},"last_response_status":{"nullable":true,"type":"integer"},"status":{"enum":["pending","succeeded","failed"],"type":"string"},"succeeded_at":{"format":"date-time","nullable":true,"type":"string"},"updated_at":{"format":"date-time","type":"string"},"workspace_id":{"format":"uuid","type":"string"}},"required":["id","workspace_id","endpoint_id","event_id","event_type","status","attempt_count","inserted_at","updated_at"],"type":"object"},"WebhookDeliveryAttempt":{"additionalProperties":false,"properties":{"attempt":{"type":"integer"},"attempted_at":{"format":"date-time","type":"string"},"error_reason":{"nullable":true,"type":"string"},"id":{"format":"uuid","type":"string"},"response_snippet":{"nullable":true,"type":"string"},"response_status":{"nullable":true,"type":"integer"}},"required":["id","attempt","attempted_at"],"type":"object"},"WebhookEndpoint":{"additionalProperties":false,"properties":{"event_types":{"items":{"type":"string"},"type":"array"},"id":{"format":"uuid","type":"string"},"inserted_at":{"format":"date-time","type":"string"},"status":{"enum":["active","disabled"],"type":"string"},"updated_at":{"format":"date-time","type":"string"},"url":{"format":"uri","type":"string"},"workspace_id":{"format":"uuid","type":"string"}},"required":["id","workspace_id","url","event_types","status","inserted_at","updated_at"],"type":"object"},"WebhookEndpointCreate":{"additionalProperties":false,"properties":{"event_types":{"items":{"type":"string"},"type":"array"},"url":{"format":"uri","type":"string"}},"required":["url","event_types"],"type":"object"},"Workspace":{"additionalProperties":false,"properties":{"approval_required":{"items":{"type":"string"},"type":"array"},"archived_at":{"format":"date-time","nullable":true,"type":"string"},"browser_profile_error_code":{"nullable":true,"type":"string"},"browser_profile_status":{"enum":["pending","ready","failed"],"type":"string"},"created_at":{"format":"date-time","type":"string"},"email":{"nullable":true,"type":"string"},"id":{"format":"uuid","type":"string"},"mailbox_error_code":{"nullable":true,"type":"string"},"mailbox_status":{"enum":["pending","ready","failed"],"type":"string"},"name":{"type":"string"},"released_at":{"format":"date-time","nullable":true,"type":"string"},"slug":{"type":"string"},"status":{"enum":["provisioning","ready","failed","dormant","released","purged"],"type":"string"}},"required":["id","name","slug","status","mailbox_status","browser_profile_status"],"type":"object"},"WorkspaceCreate":{"additionalProperties":false,"properties":{"approval_required":{"items":{"type":"string"},"type":"array"},"name":{"type":"string"}},"required":["name"],"type":"object"},"WorkspaceIdentity":{"additionalProperties":false,"properties":{"created_at":{"format":"date-time","type":"string"},"display_name":{"type":"string"},"email_address":{"format":"email","type":"string"},"id":{"format":"uuid","type":"string"},"workspace_id":{"format":"uuid","type":"string"}},"required":["id","workspace_id","display_name","email_address","created_at"],"type":"object"},"WorkspaceUpdate":{"additionalProperties":false,"properties":{"name":{"type":"string"}},"required":["name"],"type":"object"}},"securitySchemes":{"bearerAuth":{"bearerFormat":"awk_...","description":"API key supplied as Authorization: Bearer awk_...","scheme":"bearer","type":"http"},"oauth2":{"flows":{"clientCredentials":{"scopes":{"activity:read":"Read workspace activity and streams.","api-keys:manage":"Manage organization API keys.","approvals:manage":"Read and decide approval requests.","authenticators:manage":"Manage and fill TOTP authenticators.","billing:read":"Read organization billing status.","browser:use":"Create and operate browser sessions.","credentials:manage":"Manage and fill stored credentials.","feedback:write":"Submit authenticated feedback.","files:manage":"Create, read, and delete workspace files.","mail:read":"Read workspace mail and attachments.","mail:send":"Send and reply to workspace mail.","usage:read":"Read organization usage.","webhooks:manage":"Manage outbound webhook endpoints and deliveries.","workspaces:read":"Read workspaces and their resources.","workspaces:write":"Create, update, and delete workspaces."},"tokenUrl":"https://agentstead.sh/oauth/token"}},"type":"oauth2"}}},"info":{"description":"API for durable agent workspaces, managed identity, browser sessions,\nmail, credentials, activity, and outbound webhook delivery.\n\nActivity events include actor attribution with type api_key, user,\nsystem, or unknown for pre-attribution legacy rows.\n","title":"Agent Workspaces API","version":"0.1.0"},"openapi":"3.0.3","paths":{"/v1/workspaces/{id}/purge":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_purge","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/purge","tags":["Workspace"]}},"/v1/credentials/{id}":{"delete":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"CredentialController_delete","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"DELETE /v1/credentials/:id","tags":["Credential"]},"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"CredentialController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Credential"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Credential"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Credential"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/credentials/:id","tags":["Credential"]}},"/v1/workspaces/{id}/sign-ins":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"SignInController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/sign-ins","tags":["SignIn"]}},"/v1/browser-sessions/{id}/totp-fills":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"TotpFillController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/totp-fills","tags":["TotpFill"]}},"/v1/workspaces/{id}/mail/send":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"MailController_send_message","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MailSend"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/mail/send","tags":["Mail"]}},"/v1/workspaces/{id}/mail/{message_id}/attachments/{attachment_id}":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"MailController_attachment","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}},{"in":"path","name":"message_id","required":true,"schema":{"type":"string"}},{"in":"path","name":"attachment_id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/mail/:message_id/attachments/:attachment_id","tags":["Mail"]}},"/v1/openapi.json":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"OpenApiController_show","parameters":[],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[],"summary":"GET /v1/openapi.json","tags":["OpenApi"]}},"/v1/workspaces":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_index","parameters":[],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"items":{"$ref":"#/components/schemas/Workspace"},"type":"array"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"items":{"$ref":"#/components/schemas/Workspace"},"type":"array"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"items":{"$ref":"#/components/schemas/Workspace"},"type":"array"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces","tags":["Workspace"]},"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_create","parameters":[{"description":"Stable key for safely retrying this request.","in":"header","name":"Idempotency-Key","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkspaceCreate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces","tags":["Workspace"]}},"/v1/workspaces/{id}/accounts":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"AccountController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/accounts","tags":["Account"]}},"/v1/workspaces/{id}/mail/wait":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"MailController_wait","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/mail/wait","tags":["Mail"]}},"/v1/webhooks/agentmail":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"AgentMailWebhookController_create","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[],"summary":"POST /v1/webhooks/agentmail","tags":["AgentMailWebhook"]}},"/v1/public/feedback":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"FeedbackController_create_public","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackCreate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackAccepted"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackAccepted"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackAccepted"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[],"summary":"POST /v1/public/feedback","tags":["Feedback"]}},"/v1/browser-sessions/{id}/page-navigations":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"PageNavigateController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/page-navigations","tags":["PageNavigate"]}},"/v1/feedback":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"FeedbackController_create","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackCreate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackAccepted"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackAccepted"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackAccepted"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/feedback","tags":["Feedback"]}},"/v1/approvals/{id}/decision":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"ApprovalController_decision","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/approvals/:id/decision","tags":["Approval"]}},"/v1/billing":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"BillingStatusController_show","parameters":[],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/billing","tags":["BillingStatus"]}},"/v1/workspaces/{id}/mail/{message_id}":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"MailController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}},{"in":"path","name":"message_id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/mail/:message_id","tags":["Mail"]}},"/v1/workspaces/{id}/login-profiles":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"LoginProfileController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/login-profiles","tags":["LoginProfile"]}},"/v1/workspaces/{id}/webhooks":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WebhookEndpointController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/webhooks","tags":["WebhookEndpoint"]},"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WebhookEndpointController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WebhookEndpointCreate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookEndpoint"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookEndpoint"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookEndpoint"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/webhooks","tags":["WebhookEndpoint"]}},"/v1/workspaces/{id}/webhook-deliveries":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WebhookDeliveryController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/webhook-deliveries","tags":["WebhookDelivery"]}},"/v1/login-profiles/{id}":{"delete":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"LoginProfileController_delete","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"DELETE /v1/login-profiles/:id","tags":["LoginProfile"]}},"/v1/workspaces/{id}/mail/{message_id}/reply":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"MailController_reply","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}},{"in":"path","name":"message_id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MailReply"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/mail/:message_id/reply","tags":["Mail"]}},"/v1/browser-sessions/{id}/page-screenshots":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"PageScreenshotController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/page-screenshots","tags":["PageScreenshot"]}},"/v1/browser-sessions/{id}/page-reads":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"PageReadController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/page-reads","tags":["PageRead"]}},"/v1/approvals/{id}/wait":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"ApprovalController_wait","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/approvals/:id/wait","tags":["Approval"]}},"/v1/workspaces/{id}/wake":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_wake","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/wake","tags":["Workspace"]}},"/v1/workspaces/{id}/files/{file_id}":{"delete":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"FileController_delete","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}},{"in":"path","name":"file_id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"DELETE /v1/workspaces/:id/files/:file_id","tags":["File"]},"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"FileController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}},{"in":"path","name":"file_id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/files/:file_id","tags":["File"]}},"/v1/browser-sessions/{id}/credential-fills":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"CredentialFillController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/credential-fills","tags":["CredentialFill"]}},"/v1/webhook-deliveries/{id}":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WebhookDeliveryController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookDelivery"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookDelivery"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookDelivery"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/webhook-deliveries/:id","tags":["WebhookDelivery"]}},"/v1/usage":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"UsageController_index","parameters":[],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsageResponse"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsageResponse"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsageResponse"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/usage","tags":["Usage"]}},"/v1/browser-sessions/{id}/page-clicks":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"PageClickController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/page-clicks","tags":["PageClick"]}},"/v1/workspaces/{id}/provisioning-retry":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_retry_provisioning","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/provisioning-retry","tags":["Workspace"]}},"/v1/workspaces/{id}/authenticators":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"AuthenticatorController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/authenticators","tags":["Authenticator"]},"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"AuthenticatorController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuthenticatorCreate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Authenticator"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Authenticator"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Authenticator"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/authenticators","tags":["Authenticator"]}},"/v1/api-keys/{id}":{"delete":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"ApiKeyController_delete","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"DELETE /v1/api-keys/:id","tags":["ApiKey"]}},"/v1/webhooks/outrank":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"OutrankWebhookController_create","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/webhooks/outrank","tags":["OutrankWebhook"]}},"/v1/api-keys":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"ApiKeyController_index","parameters":[],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/api-keys","tags":["ApiKey"]},"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"ApiKeyController_create","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/api-keys","tags":["ApiKey"]}},"/v1/webhooks/{id}/rotate-secret":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WebhookEndpointController_rotate_secret","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/webhooks/:id/rotate-secret","tags":["WebhookEndpoint"]}},"/v1/workspaces/{id}/credentials":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"CredentialController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/credentials","tags":["Credential"]},"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"CredentialController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CredentialCreate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Credential"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Credential"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Credential"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/credentials","tags":["Credential"]}},"/v1/workspaces/{id}/browser-sessions":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"BrowserSessionController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/browser-sessions","tags":["BrowserSession"]},"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"BrowserSessionController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}},{"description":"Stable key for safely retrying this request.","in":"header","name":"Idempotency-Key","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BrowserSessionCreate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/BrowserSession"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/BrowserSession"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/BrowserSession"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/browser-sessions","tags":["BrowserSession"]}},"/v1/browser-sessions/{id}":{"delete":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"BrowserSessionController_delete","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"DELETE /v1/browser-sessions/:id","tags":["BrowserSession"]},"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"BrowserSessionController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/BrowserSession"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/BrowserSession"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/BrowserSession"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/browser-sessions/:id","tags":["BrowserSession"]}},"/v1/browser-sessions/{id}/page-selections":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"PageSelectController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/page-selections","tags":["PageSelect"]}},"/v1/browser-sessions/{id}/page-waits":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"PageWaitController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/page-waits","tags":["PageWait"]}},"/v1/workspaces/{id}/activity/stream":{"get":{"callbacks":{},"deprecated":false,"description":"SSE stream of activity events. Each event includes actor attribution.","operationId":"ActivityController_stream","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"text/event-stream":{"schema":{"type":"string"}}},"description":"Server-sent activity events."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/activity/stream","tags":["Activity"]}},"/v1/browser-sessions/{id}/live-view":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"BrowserSessionController_live_view","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/live-view","tags":["BrowserSession"]}},"/v1/workspaces/{id}/release":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_release","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/release","tags":["Workspace"]}},"/v1/webhook-deliveries/{id}/replay":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WebhookDeliveryController_replay","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookDelivery"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookDelivery"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookDelivery"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/webhook-deliveries/:id/replay","tags":["WebhookDelivery"]}},"/v1/browser-sessions/{id}/page-captcha-waits":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"PageCaptchaController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/page-captcha-waits","tags":["PageCaptcha"]}},"/v1/webhooks/{id}":{"delete":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WebhookEndpointController_delete","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"DELETE /v1/webhooks/:id","tags":["WebhookEndpoint"]},"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WebhookEndpointController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookEndpoint"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookEndpoint"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/WebhookEndpoint"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/webhooks/:id","tags":["WebhookEndpoint"]}},"/v1/workspaces/{id}":{"delete":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_delete","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"DELETE /v1/workspaces/:id","tags":["Workspace"]},"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id","tags":["Workspace"]},"patch":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"WorkspaceController_update","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkspaceUpdate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"PATCH /v1/workspaces/:id","tags":["Workspace"]}},"/v1/workspaces/{id}/identity":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"IdentityController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/identity","tags":["Identity"]}},"/v1/webhooks/stripe":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"StripeWebhookController_create","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"type":"object"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[],"summary":"POST /v1/webhooks/stripe","tags":["StripeWebhook"]}},"/v1/browser-sessions/{id}/page-fills":{"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"PageFillController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageAction"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/browser-sessions/:id/page-fills","tags":["PageFill"]}},"/v1/approvals/{id}":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"ApprovalController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Approval"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Approval"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Approval"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/approvals/:id","tags":["Approval"]}},"/v1/workspaces/{id}/files":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"FileController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/files","tags":["File"]},"post":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"FileController_create","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FileCreate"}}},"required":false},"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/File"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/File"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/File"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"POST /v1/workspaces/:id/files","tags":["File"]}},"/v1/workspaces/{id}/activity":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"ActivityController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/activity","tags":["Activity"]}},"/v1/workspaces/{id}/approvals":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"ApprovalController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/approvals","tags":["Approval"]}},"/v1/authenticators/{id}":{"delete":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"AuthenticatorController_delete","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"DELETE /v1/authenticators/:id","tags":["Authenticator"]},"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"AuthenticatorController_show","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Authenticator"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Authenticator"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Authenticator"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/authenticators/:id","tags":["Authenticator"]}},"/v1/workspaces/{id}/mail":{"get":{"callbacks":{},"deprecated":false,"description":"See the endpoint-specific API documentation.","operationId":"MailController_index","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Successful response."},"201":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Resource created."},"202":{"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Workspace"}},"type":"object"}}},"description":"Request accepted."},"204":{"description":"No content."},"400":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"401":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"403":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"404":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"409":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"422":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"429":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"502":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."},"503":{"content":{"application/problem+json":{"schema":{"$ref":"#/components/schemas/Problem"}}},"description":"RFC 7807 problem document."}},"security":[{"bearerAuth":[]}],"summary":"GET /v1/workspaces/:id/mail","tags":["Mail"]}}},"security":[{"bearerAuth":[]}],"servers":[],"tags":[]}