# escrow_parties_sync

> Synchronize the buyer and/or seller client rosters for an escrow.

<!-- Source: https://docs.actuallycare.com/tools/escrows/escrow_parties_sync -->

```text
Synchronize the buyer and/or seller client rosters for an escrow. Pass the full desired roster for each side; the tool compares it against the escrow's current parties and adds/removes as needed. Provide only the sides you want to change — omit a side to leave it unchanged, pass an empty array to remove all parties on that side. Each client_id must already exist (use clients_create or clients_find_or_create first). Returns { added, removed, buyers, sellers } summarizing the change and the resulting rosters.
```

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `escrow_id` | string | Yes | UUID of the escrow whose roster you want to sync. |
| `buyers` | array of strings | No | Desired buyer client UUIDs (full set — compared against the current roster). Omit to leave buyers unchanged; pass [] to clear. |
| `sellers` | array of strings | No | Desired seller client UUIDs (full set — compared against the current roster). Omit to leave sellers unchanged; pass [] to clear. |

## Example prompts

- "Add Luis and Maria Garcia as the buyers on the Birchwood Ln escrow."
- "Remove the co-buyer from the Marlowe Ct escrow, keep only Dana Whitfield as buyer."

## Safety

**Updates data.** Changes an existing record. The change is visible immediately in the app and can be edited back.
