PlatformClient gives agents and scripts full CRUD access to workspaces, issues, labels, and agents over the Platform API.
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
Use connection pooling
Use connection pooling
Keep related calls inside one
async with PlatformClient(...) block.Handle token lifecycle
Handle token lifecycle
Call
register() or login() once; the client stores the JWT for later requests.Scope calls to a workspace
Scope calls to a workspace
Pass
workspace_id on every resource method — RBAC enforces membership.Read config from the environment
Read config from the environment
Use
os.getenv("PLATFORM_URL") and os.getenv("PLATFORM_TOKEN") in production.Related
Platform SDK Reference
REST endpoints and request schemas
Platform Client SDK Testing
Integration tests with ASGITransport

