> ## Documentation Index
> Fetch the complete documentation index at: https://developers.squads.so/llms.txt
> Use this file to discover all available pages before exploring further.

# UpdateAccountRequest

Update account configuration (all fields optional)

## Example

```typescript theme={null}
const update: UpdateAccountRequest = {
  threshold: 2,
  transactionSigners: ['5FHwkrdxntdK24hgQU8qgBjn35Y1zwhz1GZwCkP2UJnM']
};
const withSigners: UpdateAccountRequest = {
  signers: [{
    address: 'newSignerPublicKey',
    role: 'backup',
    permissions: ['CAN_VOTE']
  }],
  threshold: 2
};
```

## Properties

| Property                                            | Type                                                                                                | Description                                                      |
| --------------------------------------------------- | --------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- |
| <a id="signers" /> `signers?`                       | [`AccountSigner`](/grid/v1/sdk-reference/react-native/reference/latest/interfaces/AccountSigner)\[] | Signers (replaces existing if provided)                          |
| <a id="threshold" /> `threshold?`                   | `number`                                                                                            | Approval threshold (must not exceed signers.length, range: 1-10) |
| <a id="timelock" /> `timeLock?`                     | `number`                                                                                            | Time lock in seconds (range: 1 to u32::MAX)                      |
| <a id="adminaddress" /> `adminAddress?`             | `string`                                                                                            | Admin address (pass null to remove)                              |
| <a id="transactionsigners" /> `transactionSigners?` | `string`\[]                                                                                         | Signer addresses that must approve this update                   |
