Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.evergreens.ai/llms.txt

Use this file to discover all available pages before exploring further.

AuthorAuthor: Adnan Ali
Tedi IntegrationEntity defines the structure and properties of an integration used in Tedi’s Integrations API.

Definition

Below is the definition for the IntegrationEntity:
IntegrationEntity
interface IntegrationEntity extends TediCentralizedEntity {
  id: string;
  provider: string;
  metadata: {
    id?: string;
    email?: string;
    name?: string;
    picture?: string;
  };
  created_at: string;
}
PropertyTypeDescription
idstringThe unique identifier of the integration.
providerstringThe provider of the integration (e.g., “google-lo
oker-studio”).
metadataobjectAn object containing additional metadata about the integration, which may include fields such as:
- id: The unique identifier from the integration provider (e.g., Google account ID).
- email: The email associated with the integration account.
- name: The display name of the integration account.
- picture: The URL of the profile picture associated with the integration
created_atstringThe timestamp when the integration was connected to the Tedi account.