> For the complete documentation index, see [llms.txt](https://circular-protocol.gitbook.io/circular-protocol-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://circular-protocol.gitbook.io/circular-protocol-documentation/developer-tools/enterprise-apis/php/cep_account.updateaccount.md).

# CEP\_Account.updateAccount()

### Function Signature

```php
public function updateAccount(): bool
```

### Parameters

| Parameter Name | Datatype |
| -------------- | -------- |
|                |          |

### Example

```php

// ...
if ($account->updateAccount()) {
    echo "Nonce: " . $account->Nonce . "\n";
} else {
    echo "Error on account update";
}

// ...

```
