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

# Contact

export const SnippetObjectScreenshot = ({objectName, filePath = null, extension = 'png'}) => {
  return <>
      <Frame caption={`${objectName[0].toUpperCase() + objectName.slice(1).toLowerCase()} screenshot from the lemlist app interface`}>
        <img src={`/images/objects-definitions/${filePath ?? objectName.toLowerCase()}.${extension}`} alt={`${objectName[0].toUpperCase() + objectName.slice(1).toLowerCase()} screenshot from the lemlist app interface`} />
      </Frame>
    </>;
};

<Warning>
  A Contact is not to be confused with a [Lead](/api-reference/objects-definitions/lead).
</Warning>

<SnippetObjectScreenshot objectName="Contact" />
