v1

latestOpenAPI 3.0.12026-07-268028223.9 KB
Trusts

Update a trust

Update an existing trust

patch/v1/households/{household_id}/trusts/{id}

Path parameters

idstring required

The trust ID

Headers

Idempotency-Keystring

Unique key to ensure idempotent request handling. If a request with the same key was already processed, the original response will be returned.

Request body

namestring

Trust name

tax_idstring

Tax ID

additional_infostring

Additional information

Example request

{
  "name": "Updated Family Trust",
  "tax_id": "98-7654321"
}

Response

trust updated

idstring required

The trust ID

book_idstring required

The book ID

household_idstring required

The household ID

namestring required

Trust name

tax_idstring nullable

Tax ID

additional_infostring nullable

Additional information

created_atstring date-time required

When the trust was created

updated_atstring date-time required

When the trust was last updated

Example response

{
  "id": "abc123xyz",
  "book_id": "book123xyz",
  "household_id": "household123xyz",
  "name": "Smith Family Trust",
  "tax_id": "12-3456789"
}