> For the complete documentation index, see [llms.txt](https://docs.sparkloop.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sparkloop.app/api-v3/objects-schema/account-object.md).

# Account Object

## Account Object

| Field          | Type           | Description                                                                          |
| -------------- | -------------- | ------------------------------------------------------------------------------------ |
| `uuid`         | String         | Account (team) UUID.                                                                 |
| `name`         | String         | Account name.                                                                        |
| `esp`          | String \| null | Name of the connected email service provider (e.g. `Kit`), or `null` if none.        |
| `logo_url`     | String         | URL of the account's logo (a placeholder if none is set).                            |
| `created_at`   | String         | When the account was created (ISO 8601).                                             |
| `owner`        | Object         | The account owner: `email`, `name`.                                                  |
| `team_members` | Array          | Team members, each with `email` and `name`. Present only with `expand=team_members`. |

**Example**

```json
{
  "uuid": "team_7a38e34ed0",
  "name": "The Mermaids Singing",
  "esp": "Kit",
  "logo_url": "https://assets.sparkloop.app/logos/team_7a38e34ed0.png",
  "created_at": "2025-01-12T09:30:00.000Z",
  "owner": {
    "email": "owner@example.com",
    "name": "Ada Lovelace"
  },
  "team_members": [
    { "email": "owner@example.com", "name": "Ada Lovelace" },
    { "email": "editor@example.com", "name": "Grace Hopper" }
  ]
}
```
