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

Immediate Search¶

This tutorial demonstrates how to perform immediate (real-time) searches for case and party records using the PCLClient class. These types of queries return results instantly and are suited for simple lookups.

Case Search¶

Use PCLClient.search_cases() to search for cases by various parameters.

Example:

from pacersdk.client import PCLClient

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

result = client.search_cases({
    "caseTitle": "Smith vs"
})
print(result)

Party Search¶

Use PCLClient.search_parties() to find parties by name or role.

Example:

from pacersdk.client import PCLClient

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

result = client.search_parties({
    "lastName": "Johnson"
})
print(result)
Next
Batch Search
Previous
Installation
Copyright © 2025, Michael Czigler
Made with Sphinx and @pradyunsg's Furo
On this page
  • Immediate Search
    • Case Search
    • Party Search