For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

{
  "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" }
  ]
}