Skip to main content
PATCH
/
cases
/
{case_id}
/
probate
Update probate case info
curl --request PATCH \
  --url https://api.example.com/v1/cases/{case_id}/probate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "state_code": "UT",
  "county_slug": "cache-county",
  "probate_type": "informal",
  "case_number": "2025-PR-00456",
  "court_name": "First District Court, Cache County",
  "judge_name": "Hon. John Johnson",
  "filing_date": "2023-12-25",
  "hearing_date": "2023-12-25",
  "next_hearing_date": "2023-12-25",
  "status": "filed",
  "executor_appointed_date": "2023-12-25",
  "letters_issued_date": "2023-12-25",
  "bond_amount": 123,
  "bond_provider": "<string>",
  "bond_status": "required",
  "attorney_name": "<string>",
  "attorney_firm": "<string>",
  "attorney_phone": "<string>",
  "attorney_email": "jsmith@example.com",
  "attorney_bar_number": "<string>",
  "estate_value_at_filing": 123,
  "will_admitted": false,
  "will_admitted_date": "2023-12-25",
  "will_contested": false,
  "contest_details": "<string>",
  "creditor_notice_published": false,
  "creditor_notice_date": "2023-12-25",
  "creditor_claim_deadline": "2023-12-25",
  "inventory_filed": false,
  "inventory_filed_date": "2023-12-25",
  "inventory_due_date": "2023-12-25",
  "final_accounting_filed": false,
  "final_accounting_date": "2023-12-25",
  "distribution_complete": false,
  "distribution_date": "2023-12-25",
  "case_closed_date": "2023-12-25",
  "notes": "<string>"
}
'
{
  "data": {
    "state_code": "UT",
    "county_slug": "cache-county",
    "probate_type": "informal",
    "case_number": "2025-PR-00456",
    "court_name": "First District Court, Cache County",
    "judge_name": "Hon. John Johnson",
    "filing_date": "2023-12-25",
    "hearing_date": "2023-12-25",
    "next_hearing_date": "2023-12-25",
    "status": "filed",
    "executor_appointed_date": "2023-12-25",
    "letters_issued_date": "2023-12-25",
    "bond_amount": 123,
    "bond_provider": "<string>",
    "bond_status": "required",
    "attorney_name": "<string>",
    "attorney_firm": "<string>",
    "attorney_phone": "<string>",
    "attorney_email": "jsmith@example.com",
    "attorney_bar_number": "<string>",
    "estate_value_at_filing": 123,
    "will_admitted": false,
    "will_admitted_date": "2023-12-25",
    "will_contested": false,
    "contest_details": "<string>",
    "creditor_notice_published": false,
    "creditor_notice_date": "2023-12-25",
    "creditor_claim_deadline": "2023-12-25",
    "inventory_filed": false,
    "inventory_filed_date": "2023-12-25",
    "inventory_due_date": "2023-12-25",
    "final_accounting_filed": false,
    "final_accounting_date": "2023-12-25",
    "distribution_complete": false,
    "distribution_date": "2023-12-25",
    "case_closed_date": "2023-12-25",
    "notes": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

case_id
string
required

Unique case identifier (ULID format).

Body

application/json
state_code
string
Example:

"UT"

county_slug
string
Example:

"cache-county"

probate_type
enum<string>
Available options:
formal,
informal,
small_estate,
summary,
ancillary,
supervised,
unsupervised
Example:

"informal"

case_number
string | null
Example:

"2025-PR-00456"

court_name
string | null
Example:

"First District Court, Cache County"

judge_name
string | null
Example:

"Hon. John Johnson"

filing_date
string<date> | null
hearing_date
string<date> | null
next_hearing_date
string<date> | null
status
enum<string>
Available options:
not_filed,
filed,
hearing_scheduled,
letters_issued,
inventory_due,
creditor_period,
accounting_due,
distribution_pending,
closed
Example:

"filed"

executor_appointed_date
string<date> | null
letters_issued_date
string<date> | null
bond_amount
number<double> | null
bond_provider
string | null
bond_status
enum<string> | null
Available options:
required,
waived,
filed,
released,
null
attorney_name
string | null
attorney_firm
string | null
attorney_phone
string | null
attorney_email
string<email> | null
attorney_bar_number
string | null
estate_value_at_filing
number<double> | null
will_admitted
boolean
Example:

false

will_admitted_date
string<date> | null
will_contested
boolean
Example:

false

contest_details
string | null
creditor_notice_published
boolean
Example:

false

creditor_notice_date
string<date> | null
creditor_claim_deadline
string<date> | null
inventory_filed
boolean
Example:

false

inventory_filed_date
string<date> | null
inventory_due_date
string<date> | null
final_accounting_filed
boolean
Example:

false

final_accounting_date
string<date> | null
distribution_complete
boolean
Example:

false

distribution_date
string<date> | null
case_closed_date
string<date> | null
notes
string | null

Response

Probate case info updated.

data
object