> ## Documentation Index
> Fetch the complete documentation index at: https://docs.annature.com.au/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve an account

Retrieves the details of an existing account in your organisation.

This endpoint is typically used to look up a specific team member’s profile — for example, to determine their assigned role, group membership, or timezone configuration. You’ll need the account’s unique ID to make this request.

## Parameters

<ParamField path="id" type="string">
  The unique identifier for the account.
</ParamField>

<RequestExample>
  ```bash Endpoint theme={null}
  GET /v1/accounts/:id
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "c64ce66b70b21c03bfd5dfa0ab14b730",
    "name": "Ted Annature",
    "email": "ted@annature.com.au",
    "number": "1300 000 000",
    "timezone": "+10:00",
    "role": "administrator",
    "active": true,
    "group_id": "a5a885caee6286a54ad7bbd4ab5400e9",
    "organisation_id": "62e9a87c6ed1444d9d228c4a0374017d",
    "created": "2019-12-17T05:30:00Z",
    "verified": "2019-12-17T05:30:00Z"
  }
  ```
</ResponseExample>
