> For the complete documentation index, see [llms.txt](https://developer.ecall-messaging.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.ecall-messaging.com/api-references/https-interface/account-balance.md).

# Account balance

Retrieve the current point balance for an eCall account.

Use `Api/account/AccountBalance` to retrieve the current point balance.

**Endpoint:** `Api/account/AccountBalance`

| Parameter  | Description |
| ---------- | ----------- |
| `Username` | Username    |
| `Password` | Password    |

**Example:**

```
/Api/account/AccountBalance?Username=xxx&Password=yyy
```

### Response structure

The response is XML.

```xml
<AccountBalanceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eCallHttp.Models.Results">
  <AccountName></AccountName>
  <AccountRef></AccountRef>
  <Balance></Balance>
  <TimeStamp></TimeStamp>
  <TimeStampUtc></TimeStampUtc>
</AccountBalanceResponse>
```

| Field          | Description               |
| -------------- | ------------------------- |
| `AccountName`  | Account name              |
| `AccountRef`   | Account reference         |
| `Balance`      | Current point balance     |
| `TimeStamp`    | Response timestamp        |
| `TimeStampUtc` | Response timestamp in UTC |
