Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
pacersdk
pacersdk

Tutorials:

  • Installation
  • Immediate Search
  • Batch Search
  • Sorting
  • Multi-Factor Authentication (MFA)
  • Best Practices

Library Reference:

  • Authentication
  • Client API
  • Configuration
  • Models
  • OTP
  • Service Modules
  • Session

Project Information:

  • Contributing
  • License
Back to top
View this page

Batch SearchΒΆ

Batch searching supports long-running job submission and result polling.

Example:

from pacersdk.client import PCLClient

client = PCLClient(
    username="your_username",
    password="your_password",
    environment="qa"
)

response = client.submit_batch_case({
    "caseTitle": "Acme"
})

report_id = response.get("reportId")

# Check status
status = client.get_batch_case_status(report_id)
print(status)

# Download results when complete
if status["status"] == "COMPLETED":
    results = client.get_batch_case_result(report_id)
    print(results)
Next
Sorting
Previous
Immediate Search
Copyright © 2025, Michael Czigler
Made with Sphinx and @pradyunsg's Furo