Skip to main content
PlatformClient gives agents and scripts full CRUD access to workspaces, issues, labels, and agents over the Platform API.
The user tracks bugs; the agent uses PlatformClient to log and update workspace issues.

Quick Start

1

Simple Usage

2

With Configuration

Pass an existing token and batch related calls in one session:

How It Works


API Areas

See Platform SDK Client for endpoint-level detail.

Error Handling


Best Practices

Keep related calls inside one async with PlatformClient(...) block.
Call register() or login() once; the client stores the JWT for later requests.
Pass workspace_id on every resource method — RBAC enforces membership.
Use os.getenv("PLATFORM_URL") and os.getenv("PLATFORM_TOKEN") in production.

Platform SDK Reference

REST endpoints and request schemas

Platform Client SDK Testing

Integration tests with ASGITransport