For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Slack communityBook a demo
HomeAPI DefinitionSDKsDocsCLI & API Reference
HomeAPI DefinitionSDKsDocsCLI & API Reference
  • Introduction
    • Overview
    • Language Support
    • SDK Customer Showcase
      • Python
      • Go
      • .NET
      • Java
      • PHP
      • Ruby
  • Capabilities
    • Strongly Typed
    • Idiomatic Method Names
    • Schema Validation
    • Discriminated Unions
    • Multipart Form Data
    • Forward Compatibility
    • Registry Publishing
    • Auto-Pagination
    • OAuth Token Refresh
    • Retries with Backoff
    • Webhook Signature Verification
    • Idempotency Headers
    • Server-Sent Events
    • Integration Tests
    • Code Snippets
    • Augment with Custom Code
    • Merging Multiple APIs
    • WebSockets
  • Reference
    • Configuration
  • Guides
    • Generate your First SDK
    • Preview your SDK Locally
    • Publish a Public-Facing SDK
LogoLogo
Slack communityBook a demo
IntroductionChangelogs

PHP

February 11, 2025
February 11, 2025
Was this page helpful?
Edit this page
Previous

February 9, 2025

Next
Built with

0.8.0

(feat): Add automatic pagination support for endpoints that return a paginated response. Here’s an example of how users can use paginated endpoints:

$items = $client->list($request); foreach($items as $item){
1 echo $item;
2} $pages = $items->getPages(); foreach($pages as $page){
3 foreach($page as $item){
4 echo $item;
5 }
6} ```