Pagination Shapes
The Control Plane surface currently exposes two pagination patterns:page/size: numbered pages such as tickets and some admin list routespage-token/page-size: cursor-style traversal such as billing transaction history
Retry And Rate-Limit Behavior
Control Plane callers should expect transient failures and explicit rate limiting:429means the server is rate limiting the request- if the response includes
Retry-After, wait for that server-provided delay before retrying 500,502,503, and504can also be transient
SDK And CLI Notes
- SDK transport honors
Retry-Afterfor idempotent requests and caps long delays - CLI
--max-retriesapplies only to idempotent requests - for automation, prefer
tm --output jsonand pass pagination values explicitly

